refactor(MappingProfile): create to handle model mappings

This commit is contained in:
Developer 02
2025-08-26 17:13:21 +02:00
parent 2355a566e4
commit 05cd8a05f4
4 changed files with 23 additions and 45 deletions

View File

@@ -50,12 +50,13 @@ public record EnvelopeReceiverQueryBase<TEnvelopeQuery, TReceiverQuery>
}
/// <summary>
///
/// Repräsentiert eine Abfrage für Umschläge.
/// </summary>
public virtual TEnvelopeQuery Envelope { get; init; } = new();
/// <summary>
///
/// Stellt eine Abfrage dar, um die Details eines Empfängers zu lesen.
/// um spezifische Informationen über einen Empfänger abzurufen.
/// </summary>
public virtual TReceiverQuery Receiver { get; init; } = new();
}