Created
August 7, 2012 23:53
-
-
Save bsommardahl/3290661 to your computer and use it in GitHub Desktop.
Plumber should leave trash on the floor
This file contains 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 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