11 lines
282 B
C#
11 lines
282 B
C#
using EnvelopeGenerator.Application.DTOs.Messaging;
|
|
|
|
namespace EnvelopeGenerator.Application.Contracts
|
|
{
|
|
public interface IMessagingService
|
|
{
|
|
public Task<SmsResponse> SendSmsAsync(string recipient, string message);
|
|
|
|
string ServiceProvider { get; }
|
|
}
|
|
} |