13 lines
380 B
C#
13 lines
380 B
C#
namespace CvMatcher.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; }
|
|
public string? CaptchaToken { get; set; }
|
|
}
|
|
}
|