10 lines
241 B
C#
10 lines
241 B
C#
namespace Api.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; }
|
|
}
|