13 lines
517 B
C#
13 lines
517 B
C#
using MediatR;
|
|
|
|
namespace EnvelopeGenerator.Application.Documents.Queries.Read;
|
|
|
|
/// <summary>
|
|
/// Represents a query to read a document based on its unique identifier or associated envelope identifier.
|
|
/// </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?>
|
|
{
|
|
}
|