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