namespace Models.Requests; public sealed class JobMatchRequest { public string? CvDocumentId { get; set; } public string? JobUrl { get; set; } public string? JobDescription { get; set; } public bool GdprConsent { get; set; } public string? Email { get; set; } public string? CaptchaToken { get; set; } /// ISO 639-1 language code for the match result (e.g. "en", "ro"). Defaults to "en". public string? Language { get; set; } /// Client IP address — set by the api layer from the HTTP context before forwarding. Not supplied by the browser. public string? ClientIpAddress { get; set; } }