sozsoft-platform/api/modules/Sozsoft.Sender/Sms/ISozsoftSmsSender.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

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