Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public class Parent
  2. {
  3. int ID { get; set; }
  4. int Name { get; set; }
  5. List<Child> child { get; set; }
  6. }
  7.  
  8. public class Child
  9. {
  10. int ID { get; set; }
  11. int Name { get; set; }
  12. }
  13.  
  14. public class Parent
  15. {
  16. int ID { get; set; }
  17. int Name { get; set; }
  18. List<Child> child { get; set; }
  19. }
  20.  
  21. public class Child
  22. {
  23. int ID { get; set; }
  24. int Name { get; set; }
  25. List<GrandChild> grandChild { get; set; }
  26. }
  27.  
  28. public class GrandChild
  29. {
  30. int ID { get; set; }
  31. int Name { get; set; }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement