feat(SmsResponse): Erstellung eines Standardantwort-DTOs für SMS-Anfragen.
- GtxMessagingResponse für rohe dynamische Antwort erstellt. - Mapping-Profil hinzufügen
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
namespace EnvelopeGenerator.Application.Contracts
|
||||
using EnvelopeGenerator.Application.DTOs.Messaging;
|
||||
|
||||
namespace EnvelopeGenerator.Application.Contracts
|
||||
{
|
||||
public interface IMessagingService
|
||||
{
|
||||
public Task<dynamic?> SendSmsAsync(string recipient, string message);
|
||||
|
||||
public Task<TResponse?> SendSmsAsync<TResponse>(string recipient, string message);
|
||||
public Task<SmsResponse> SendSmsAsync(string recipient, string message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user