2025-05-06 06:45:49 +00:00
|
|
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
|
|
using Volo.Abp.Sms;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Sender.Sms;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
public interface IErpSmsSender : ISmsSender, ITransientDependency
|
2025-05-06 06:45:49 +00:00
|
|
|
|
{
|
|
|
|
|
|
Task<SmsSendResult> SendAsync(string PhoneNumber, string Message);
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|