namespace DocumentOperator.Application.Common.DTOs; /// /// Response DTO for ValidatePdf endpoint /// Contains PDF metadata /// public record ValidatePdfResponse( int PageCount, long FileSizeBytes, double FileSizeMB, string PdfVersion, bool HasAttachments, int AttachmentCount );