Skip to content

Instantly share code, notes, and snippets.

@beachside-project
Created April 15, 2016 08:05
Show Gist options
  • Save beachside-project/a6da7046493a2c02fe17e0df3b8b41e2 to your computer and use it in GitHub Desktop.
Save beachside-project/a6da7046493a2c02fe17e0df3b8b41e2 to your computer and use it in GitHub Desktop.
JsonDemo - person1
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
public string[] Hobbies{ get; set; }
public List<Phone> Phones { get; set; }
public string FullName => $"{FirstName} {LastName}";
}
public class Phone
{
public string PhoneNumber { get; set; }
public string ModelName { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment