Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created January 17, 2014 16:27
Show Gist options
  • Select an option

  • Save mgroves/8476376 to your computer and use it in GitHub Desktop.

Select an option

Save mgroves/8476376 to your computer and use it in GitHub Desktop.
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