COP/TestForms/Employee.cs

17 lines
546 B
C#
Raw Normal View History

2024-07-29 20:21:07 +04:00
namespace TestForms
{
public class Employee
{
public int Id { get; set; }
public bool Status { get; set; }
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public int Age { get; set; }
public bool Children { get; set; }
public bool Car { get; set; }
public string Subdivision { get; set; } = string.Empty;
public string Post { get; set; } = string.Empty;
public double Bonus { get; set; }
}
}