namespace EnvelopeGenerator.Application.Documents.Queries.Read;
///
/// Represents the response for reading a document.
///
/// The unique identifier of the document.
/// The identifier of the associated envelope.
/// The date and time when the document was added.
/// The binary data of the document, if available.
public record ReadDocumentResponse(
int Guid,
int EnvelopeId,
DateTime AddedWhen,
byte[]? ByteData
);