15 lines
205 B
C#
15 lines
205 B
C#
|
namespace Components.Object
|
|||
|
{
|
|||
|
public class Person
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public int Age { get; set; }
|
|||
|
|
|||
|
public Person(string name, int age)
|
|||
|
{
|
|||
|
Name = name;
|
|||
|
Age = age;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|