Files
myAi/cv-matcher-api/Models/Requests/MatchJobRequest.cs
T
2026-05-06 12:19:31 +03:00

12 lines
324 B
C#

namespace Api.Models.Requests
{
public sealed class MatchJobRequest
{
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; }
}
}