12 lines
457 B
C#
12 lines
457 B
C#
|
|
namespace TrueCV.Application.Models;
|
||
|
|
|
||
|
|
public sealed record VeracityReport
|
||
|
|
{
|
||
|
|
public required int OverallScore { get; init; }
|
||
|
|
public required string ScoreLabel { get; init; }
|
||
|
|
public List<CompanyVerificationResult> EmploymentVerifications { get; init; } = [];
|
||
|
|
public required TimelineAnalysisResult TimelineAnalysis { get; init; }
|
||
|
|
public List<FlagResult> Flags { get; init; } = [];
|
||
|
|
public required DateTime GeneratedAt { get; init; }
|
||
|
|
}
|