11 lines
237 B
C#
11 lines
237 B
C#
|
|
using Volo.Abp.DependencyInjection;
|
|||
|
|
using Volo.Abp.Sms;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Sender.Sms;
|
|||
|
|
|
|||
|
|
public interface ISozsoftSmsSender : ISmsSender, ITransientDependency
|
|||
|
|
{
|
|||
|
|
Task<SmsSendResult> SendAsync(string PhoneNumber, string Message);
|
|||
|
|
}
|
|||
|
|
|