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; } } }