feat(ReadDocumentQueryHandler): Logik hinzugefügt

This commit is contained in:
Developer 02
2025-04-22 23:16:22 +02:00
parent 45d39069aa
commit 975beff416
9 changed files with 45 additions and 16 deletions

View File

@@ -7,6 +7,6 @@ namespace EnvelopeGenerator.Application.Documents.Queries.Read;
/// </summary>
/// <param name="Id">The unique identifier of the document. Optional.</param>
/// <param name="EnvelopeId">The identifier of the envelope associated with the document. Optional.</param>
public record ReadDocumentQuery(int? Id = null, int? EnvelopeId = null) : IRequest<ReadDocumentResponse>
public record ReadDocumentQuery(int? Id = null, int? EnvelopeId = null) : IRequest<ReadDocumentResponse?>
{
}