Created
January 17, 2014 16:27
-
-
Save mgroves/8476376 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Rootobject | |
| { | |
| public string name { get; set; } | |
| public string occupation { get; set; } | |
| public Friend[] friends { get; set; } | |
| public Enemy[] enemies { get; set; } | |
| } | |
| public class Friend | |
| { | |
| public string name { get; set; } | |
| public string occupation { get; set; } | |
| } | |
| public class Enemy | |
| { | |
| public string name { get; set; } | |
| public string characteristics { get; set; } | |
| public int numEyes { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment