mirror of
https://github.com/ivanch/tcc.git
synced 2025-07-09 08:29:20 +00:00
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; }
|
|
}
|
|
|
|
}
|