http-api/src/Application/Employees/ViewModels/AddEmployeeViewModel.cs
2025-05-16 15:22:44 +03:00

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; }
}