namespace CvMatcher.Models.Responses { public sealed class JobMatchResponse { public int Score { get; set; } public string Summary { get; set; } = string.Empty; public List Strengths { get; set; } = []; public List Gaps { get; set; } = []; public List Recommendations { get; set; } = []; public List Evidence { get; set; } = []; public bool Cached { get; set; } public string? JobDocumentId { get; set; } public string? JobUrl { get; set; } } }