PIbd-31_Rodionov.I.A._COP_28/COP/WinForms/Employee.cs

26 lines
620 B
C#
Raw Normal View History

2024-09-22 23:29:54 +04:00
namespace WinForms
{
public class Employee
{
public int Id { get; set; }
public string Status { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public int Age { get; set; }
public string Children { get; set; } = string.Empty;
public string Car { get; set; } = string.Empty;
public string Department { get; set; } = string.Empty;
public string Position { get; set; } = string.Empty;
public double Bonus { get; set; }
}
}