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.

11 lines
257 B
C#

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);
}