2026-01-21 15:07:20 +00:00
|
|
|
namespace RealCV.Application.Models;
|
2026-01-18 19:20:50 +01:00
|
|
|
|
|
|
|
|
public sealed record CVData
|
|
|
|
|
{
|
|
|
|
|
public required string FullName { get; init; }
|
|
|
|
|
public string? Email { get; init; }
|
|
|
|
|
public string? Phone { get; init; }
|
|
|
|
|
public List<EmploymentEntry> Employment { get; init; } = [];
|
|
|
|
|
public List<EducationEntry> Education { get; init; } = [];
|
|
|
|
|
public List<string> Skills { get; init; } = [];
|
|
|
|
|
}
|