22 lines
604 B
C#
22 lines
604 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace EmployeeManager.Model
|
|||
|
{
|
|||
|
public class PhysicalPerson
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
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; }
|
|||
|
public List<Employee> Employees { get; set; }
|
|||
|
}
|
|||
|
}
|