parent
0e52d24c9f
commit
0cee6f5309
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace contacts
|
||||
{
|
||||
public class Person
|
||||
{
|
||||
public int id { get; set; }
|
||||
public string name { get; set; }
|
||||
public int age { get; set; }
|
||||
public Person(int idParam, string nameParam, int ageParam)
|
||||
{
|
||||
|
||||
this.id = idParam;
|
||||
this.name = nameParam;
|
||||
this.age = ageParam;
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue