9 lines
199 B
C#
9 lines
199 B
C#
namespace Library14Petrushin
|
|
{
|
|
public class Person
|
|
{
|
|
public string FirstName { get; set; }
|
|
public string LastName { get; set; }
|
|
public int Age { get; set; }
|
|
}
|
|
} |