namespace DocumentOperator.Application.Common.DTOs;
///
/// Response mit PDF-Metadaten
///
/// Anzahl der Seiten
/// Dateigröße in Bytes
/// Dateigröße in MB (gerundet auf 2 Dezimalstellen)
/// PDF-Version (z.B. "1.4")
/// Hat das PDF Anhänge?
/// Anzahl der Anhänge
public record PdfValidationResult(
int PageCount,
long FileSizeBytes,
double FileSizeMB,
string PdfVersion,
bool HasAttachments,
int AttachmentCount);