You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using NPin.Framework.Upms.Domain.Shared.Enums;
|
|
|
|
|
|
|
|
|
|
namespace NPin.Framework.Upms.Domain.Managers;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 短信接口
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ISms
|
|
|
|
|
{
|
|
|
|
|
Task SendSmsAsync(SmsTypeEnum smsType, string phoneNumbers, object templateParam);
|
|
|
|
|
}
|