refactor: Rename TrueCV to RealCV throughout codebase
- Renamed all directories (TrueCV.* -> RealCV.*) - Renamed all project files (.csproj) - Renamed solution file (TrueCV.sln -> RealCV.sln) - Updated all namespaces in C# and Razor files - Updated project references - Updated CSS variable names 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
37
src/RealCV.Domain/Entities/CVCheck.cs
Normal file
37
src/RealCV.Domain/Entities/CVCheck.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using RealCV.Domain.Enums;
|
||||
|
||||
namespace RealCV.Domain.Entities;
|
||||
|
||||
public class CVCheck
|
||||
{
|
||||
[Key]
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public Guid UserId { get; set; }
|
||||
|
||||
[Required]
|
||||
[MaxLength(512)]
|
||||
public string OriginalFileName { get; set; } = string.Empty;
|
||||
|
||||
[Required]
|
||||
[MaxLength(2048)]
|
||||
public string BlobUrl { get; set; } = string.Empty;
|
||||
|
||||
public CheckStatus Status { get; set; }
|
||||
|
||||
public string? ExtractedDataJson { get; set; }
|
||||
|
||||
public int? VeracityScore { get; set; }
|
||||
|
||||
[MaxLength(64)]
|
||||
public string? ProcessingStage { get; set; }
|
||||
|
||||
public string? ReportJson { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
public DateTime? CompletedAt { get; set; }
|
||||
|
||||
public ICollection<CVFlag> Flags { get; set; } = new List<CVFlag>();
|
||||
}
|
||||
Reference in New Issue
Block a user