refactor(GtxMessagingService): Optionen für generische und dynamische Antworttypen zur SendSmsAsync-Methode hinzugefügt.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user