Refactor: Aktualisierung von APIs und Anwendungsschichten zur Umsetzung von Änderungen im Bereich

This commit is contained in:
Developer 02
2025-05-28 12:55:11 +02:00
parent c1d46b446a
commit 3c60f31050
91 changed files with 1712 additions and 535 deletions

View File

@@ -1,14 +1,25 @@
using Microsoft.AspNetCore.Mvc;
namespace EnvelopeGenerator.Application.DTOs.Messaging
namespace EnvelopeGenerator.Application.DTOs.Messaging;
/// <summary>
///
/// </summary>
[ApiExplorerSettings(IgnoreApi = true)]
public record SmsResponse
{
[ApiExplorerSettings(IgnoreApi = true)]
public record SmsResponse
{
public required bool Ok { get; init; }
/// <summary>
///
/// </summary>
public required bool Ok { get; init; }
public bool Failed => !Ok;
/// <summary>
/// Returns !Ok
/// </summary>
public bool Failed => !Ok;
public dynamic? Errors { get; init; }
}
/// <summary>
///
/// </summary>
public dynamic? Errors { get; init; }
}