9 lines
277 B
C#
9 lines
277 B
C#
namespace EnvelopeGenerator.Application.Contracts
|
|
{
|
|
public interface IMessagingService
|
|
{
|
|
public Task<dynamic?> SendSmsAsync(string recipient, string message);
|
|
|
|
public Task<TResponse?> SendSmsAsync<TResponse>(string recipient, string message);
|
|
}
|
|
} |