namespace DocumentOperator.Application.Common.DTOs;
///
/// Request to extract Swiss QR Code from a PDF document.
/// The QR code must be located on the last page of the document.
///
/// Array of reference strings to pass through in the response
/// PDF document encoded as Base64 string
public record ExtractSwissQrCodeRequest(
IReadOnlyList References,
string Base64Pdf
);