2026-01-22 20:47:55 +00:00
|
|
|
namespace RealCV.Application.Models;
|
2026-01-18 19:20:50 +01:00
|
|
|
|
|
|
|
|
public sealed record EducationEntry
|
|
|
|
|
{
|
|
|
|
|
public required string Institution { get; init; }
|
|
|
|
|
public string? Qualification { get; init; }
|
|
|
|
|
public string? Subject { get; init; }
|
|
|
|
|
public string? Grade { get; init; }
|
|
|
|
|
public DateOnly? StartDate { get; init; }
|
|
|
|
|
public DateOnly? EndDate { get; init; }
|
|
|
|
|
}
|