sozsoft-platform/api/modules/Sozsoft.Sender/Sms/ISozsoftSmsSender.cs

11 lines
237 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
using Volo.Abp.DependencyInjection;
using Volo.Abp.Sms;
namespace Sozsoft.Sender.Sms;
public interface ISozsoftSmsSender : ISmsSender, ITransientDependency
{
Task<SmsSendResult> SendAsync(string PhoneNumber, string Message);
}