namespace EnvelopeGenerator.Application.Documents.Queries.Read; /// /// Represents the response for reading a document. /// public class ReadDocumentResponse : ReadDocumentResponseBase { /// /// The binary data of the document, if available. /// public byte[]? ByteData { get; init; } }