12 lines
360 B
C#
12 lines
360 B
C#
using EnvelopeGenerator.Application.DTOs.Messaging;
|
|
|
|
namespace EnvelopeGenerator.Application.Contracts;
|
|
|
|
public interface IMessagingService
|
|
{
|
|
string ServiceProvider { get; }
|
|
|
|
Task<SmsResponse> SendSmsAsync(string recipient, string message);
|
|
|
|
Task<SmsResponse> SendSmsCodeAsync(string recipient, string secretKey, string messageFormat = "{0}");
|
|
} |