Files
myAi/cv-matcher-api-models/Requests/MatchJobRequest.cs
T
claude b154fe51c3
Build and Push Docker Images / build (push) Failing after 28s
Changes
2026-05-06 17:45:05 +03:00

12 lines
330 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; }
}
}