23 lines
529 B
C#
23 lines
529 B
C#
using EnvelopeGenerator.Application.Common.Dto.Messaging;
|
|
|
|
namespace EnvelopeGenerator.Application.Interfaces.Services;
|
|
|
|
//TODO: move to DigitalData.Core
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface ISmsSender
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
string ServiceProvider { get; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="recipient"></param>
|
|
/// <param name="message"></param>
|
|
/// <returns></returns>
|
|
Task<SmsResponse> SendSmsAsync(string recipient, string message);
|
|
} |