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