PIbd-33_Yunusov_N.N._COP/YunusovComponentsLibrary/Form1/PersonWordTable.cs
2024-10-11 04:47:06 +04:00

26 lines
527 B
C#

namespace YunusovComponentsLibrary
{
public class PersonWordTable
{
public string Id { get; set; }
public string Name { get; set; } = string.Empty;
public string Surname { get; set; } = string.Empty;
public int Age { get; set; }
public double Premia { get; set; }
public PersonWordTable()
{ }
public PersonWordTable(string Id, string Name, string Surname, int Age, double Premia)
{
this.Id = Id;
this.Name = Name;
this.Surname = Surname;
this.Age = Age;
this.Premia = Premia;
}
}
}