namespace DocumentOperator.Application.Common.DTOs; /// /// DTO for ZUGFeRD check result /// public record ZugferdCheckResult { /// /// Indicates whether the PDF contains ZUGFeRD XML attachment /// public bool HasZugferd { get; init; } /// /// ZUGFeRD XML file name (e.g., "factur-x.xml") /// public string? ZugferdFileName { get; init; } /// /// ZUGFeRD XML file size in bytes /// public long? ZugferdFileSize { get; init; } /// /// MIME type of the ZUGFeRD XML file /// public string? ZugferdMimeType { get; init; } }