Files
myAi/cv-matcher-api-models/Requests/MatchJobRequest.cs
T
claude 64b0219038
Build and Push Docker Images / build (push) Failing after 27s
Move models in separate projects
2026-05-06 17:11:44 +03:00

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