using DocumentService.Client.Models.ValueObjects; namespace DocumentService.Client.Models.Requests; /// /// Request DTO for Base64-encoded PDF validation /// public record ValidatePdfBase64Request { /// /// PDF document encoded as Base64 string /// /// JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9UeXBlL0NhdGFsb2c... public required string Base64Pdf { get; init; } } /// /// Request DTO for Base64-encoded PDF/A validation /// public record ValidatePdfABase64Request { /// /// PDF document encoded as Base64 string /// /// JVBERi0xLjQKJeLjz9MKMSAwIG9iago8PC9UeXBlL0NhdGFsb2c... public required string Base64Pdf { get; init; } }