20 lines
438 B
C#
20 lines
438 B
C#
namespace cuqmbr.TravelGuide.Application.Employees.ViewModels;
|
|
|
|
public sealed class AddEmployeeViewModel
|
|
{
|
|
public string FirstName { get; set; }
|
|
|
|
public string LastName { get; set; }
|
|
|
|
public string Patronymic { get; set; }
|
|
|
|
public string Sex { get; set; }
|
|
|
|
public DateOnly BirthDate { get; set; }
|
|
|
|
|
|
public Guid CompanyUuid { get; set; }
|
|
|
|
public ICollection<EmployeeDocumentViewModel> Documents { get; set; }
|
|
}
|