Guest User

Untitled

a guest
Nov 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. public class Foo1 : Foo
  2. {
  3. public object A1 { get; set; }
  4. public object B1 { get; set; }
  5. public object C1 { get; set; }
  6. public object D1 { get; set; }
  7. public Foo1() { }
  8. }
  9.  
  10. public class Foo2 : Foo
  11. {
  12. public object A2 { get; set; }
  13. public object B2 { get; set; }
  14. public object C2 { get; set; }
  15. public object D2 { get; set; }
  16. public Foo2() { }
  17. }
  18.  
  19. public class FooN : Foo
  20. {
  21. public object AN { get; set; }
  22. public object BN { get; set; }
  23. public object CN { get; set; }
  24. public object DN { get; set; }
  25. public FooN() { }
  26. }
  27.  
  28. public class Bar1
  29. {
  30. public Foo1 Value { get; set; }
  31. public int Prop1 { get; set; }
  32. public int Prop2 { get; set; }
  33. }
  34.  
  35. public class Bar2
  36. {
  37. public Foo2 Value { get; set; }
  38. public int Prop1 { get; set; }
  39. public int Prop2 { get; set; }
  40. }
  41.  
  42. public class BarN
  43. {
  44. public FooN Value { get; set; }
  45. public int Prop1 { get; set; }
  46. public int Prop2 { get; set; }
  47. }
Add Comment
Please, Sign In to add comment