26 lines
620 B
C#
26 lines
620 B
C#
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; }
|
|
}
|
|
}
|