refactor(GtxMessagingService): Optionen für generische und dynamische Antworttypen zur SendSmsAsync-Methode hinzugefügt.

This commit is contained in:
Developer 02
2024-11-25 14:13:34 +01:00
parent d3104500d4
commit da06daf776
2 changed files with 9 additions and 4 deletions

View File

@@ -2,6 +2,8 @@
{
public interface IMessagingService
{
public Task SendSmsAsync(string recipient, string message);
public Task<dynamic?> SendSmsAsync(string recipient, string message);
public Task<TResponse?> SendSmsAsync<TResponse>(string recipient, string message);
}
}