PIbd-31_Rodionov.I.A._COP_28/COP/WinForms/Person.cs
2024-09-21 11:26:26 +04:00

14 lines
292 B
C#

namespace WinForms
{
public class Person
{
public string FirstName { get; set; } = string.Empty;
public string LastName { get; set; } = string.Empty;
public int Age { get; set; }
public string Gender { get; set; } = string.Empty;
}
}