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