Files
myAi/api/Models/Requests/JobMatchRequest.cs
T
2026-05-06 15:17:20 +03:00

11 lines
294 B
C#

namespace Api.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? CaptchaToken { get; set; }
}