17 lines
546 B
C#
17 lines
546 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|