2026-01-21 15:07:20 +00:00
|
|
|
namespace RealCV.Application.Models;
|
2026-01-18 19:20:50 +01:00
|
|
|
|
|
|
|
|
public sealed record EmploymentEntry
|
|
|
|
|
{
|
|
|
|
|
public required string CompanyName { get; init; }
|
|
|
|
|
public required string JobTitle { get; init; }
|
|
|
|
|
public string? Location { get; init; }
|
|
|
|
|
public DateOnly? StartDate { get; init; }
|
|
|
|
|
public DateOnly? EndDate { get; init; }
|
|
|
|
|
public bool IsCurrent { get; init; }
|
|
|
|
|
public string? Description { get; init; }
|
|
|
|
|
}
|