- Unnötige Parameter in SmsParams entfernt. - Code-Sendefunktion von IMessagingService entfernt. - GetTotpExpirationTime Methode im CodeGenerator entfernt.
11 lines
233 B
C#
11 lines
233 B
C#
namespace EnvelopeGenerator.Application.DTOs.Messaging
|
|
{
|
|
public record SmsResponse
|
|
{
|
|
public required bool Ok { get; init; }
|
|
|
|
public bool Failed => !Ok;
|
|
|
|
public dynamic? Errors { get; init; }
|
|
}
|
|
} |