12 lines
352 B
C#
12 lines
352 B
C#
|
|
namespace TrueCV.Application.Models;
|
||
|
|
|
||
|
|
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; }
|
||
|
|
}
|