7 lines
175 B
C#
7 lines
175 B
C#
namespace EnvelopeGenerator.Application.Contracts
|
|
{
|
|
public interface IMessagingService
|
|
{
|
|
public Task SendSmsAsync(string recipient, string message);
|
|
}
|
|
} |