Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public abstract class Building
  2. {
  3. public Person Person { Get; Set; }
  4.  
  5. public Building Building { Get; Set; }
  6. }
  7.  
  8. public class House : Building
  9. {
  10. // Other House properties
  11. }
  12.  
  13. public class Garage : Building
  14. {
  15. // Other Garage properties
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement