Files
myAi/api-models/Requests/JobMatchRequest.cs
T
claude c2896ce77b
Build and Push Docker Images / build (push) Failing after 0s
Changes
2026-05-08 14:09:58 +03:00

12 lines
329 B
C#

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; }
}