Skip to content

Instantly share code, notes, and snippets.

@bsommardahl
Created August 7, 2012 23:53
Show Gist options
  • Save bsommardahl/3290661 to your computer and use it in GitHub Desktop.
Save bsommardahl/3290661 to your computer and use it in GitHub Desktop.
Plumber should leave trash on the floor
public class Floor
{
public List<Trash> Trash { get; set; }
}
public class Trash
{
}
public class Sink
{
public List<Leak> Leaks { get; set; }
public Floor Floor { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment