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
///
/// {
/// "references": ["REF-001", "REF-002"],
/// "base64Pdf": "JVBERi0xLjQK..."
/// }
///
public record ExtractSwissQrCodeRequest(
IReadOnlyList References,
string Base64Pdf
);