using MediatR;
namespace EnvelopeGenerator.Application.Documents.Queries.Read;
///
/// Represents a query to read a document based on its unique identifier or associated envelope identifier.
///
/// The unique identifier of the document. Optional.
/// The identifier of the envelope associated with the document. Optional.
public record ReadDocumentQuery(int? Id = null, int? EnvelopeId = null) : IRequest
{
}