PIbd-42_Kashin_M.I_CPO_Cour.../Model/PhysicalPersonDto.cs

20 lines
515 B
C#
Raw Permalink Normal View History

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