14 lines
292 B
C#
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;
|
|||
|
}
|
|||
|
}
|