using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace EmployeeManager.Model { public class PhysicalPersonDto { public string Name { get; set; } public string Surname { get; set; } public string Patronomic { get; set; } public DateTime Birthday { get; set; } public string Gender { get; set; } public string Address { get; set; } public string Telephone { get; set; } } }