mirror of https://github.com/ivanch/tcc.git
13 lines
297 B
C#
13 lines
297 B
C#
|
namespace tcc_app.Models
|
|||
|
{
|
|||
|
public class PersonJson
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
public int Age { get; set; }
|
|||
|
public List<string> Friends { get; set; }
|
|||
|
public string Email { get; set; }
|
|||
|
public string Phone { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
}
|