feat(GtxMessagingService): SendSmsCodeAsync mit Basisfunktionalität als Schnittstellenimplementierung hinzugefügt

This commit is contained in:
Developer 02
2024-11-29 11:13:59 +01:00
parent b11f32bd3c
commit 0c81a86610
2 changed files with 15 additions and 4 deletions

View File

@@ -4,8 +4,10 @@ namespace EnvelopeGenerator.Application.Contracts
{
public interface IMessagingService
{
public Task<SmsResponse> SendSmsAsync(string recipient, string message);
string ServiceProvider { get; }
Task<SmsResponse> SendSmsAsync(string recipient, string message);
Task<SmsResponse> SendSmsCodeAsync(string recipient);
}
}