13 lines
365 B
C#
13 lines
365 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 envelopeReceiverId);
|
|
}
|
|
} |