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