16 lines
551 B
C#
16 lines
551 B
C#
namespace Api.Responses
|
|
{
|
|
public sealed class JobMatchResponse
|
|
{
|
|
public int Score { get; set; }
|
|
public string Summary { get; set; } = string.Empty;
|
|
public List<string> Strengths { get; set; } = [];
|
|
public List<string> Gaps { get; set; } = [];
|
|
public List<string> Recommendations { get; set; } = [];
|
|
public List<string> Evidence { get; set; } = [];
|
|
public bool Cached { get; set; }
|
|
public string? JobDocumentId { get; set; }
|
|
public string? JobUrl { get; set; }
|
|
}
|
|
}
|