TestClassA.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Masuit.Tools.ExpressionMapperBenchmark
  4. {
  5. public class TestClassA
  6. {
  7. public string MyProperty { get; set; }
  8. public int Int { get; set; }
  9. public double Double { get; set; }
  10. public DateTime DateTime { get; set; }
  11. public TestClassC TestClassC { get; set; }
  12. public List<TestClassC> List { get; set; }
  13. }
  14. public class TestClassB
  15. {
  16. public string MyProperty { get; set; }
  17. public int Int { get; set; }
  18. public double Double { get; set; }
  19. public DateTime DateTime { get; set; }
  20. public TestClassC TestClassC { get; set; }
  21. public List<TestClassD> List { get; set; }
  22. }
  23. public class TestClassC
  24. {
  25. public string MyProperty { get; set; }
  26. public int Int { get; set; }
  27. public double Double { get; set; }
  28. public DateTime DateTime { get; set; }
  29. public TestClassD Obj { get; set; }
  30. }
  31. public class TestClassD
  32. {
  33. public string MyProperty { get; set; }
  34. public int Int { get; set; }
  35. public double Double { get; set; }
  36. public DateTime DateTime { get; set; }
  37. public TestClassC Obj { get; set; }
  38. }
  39. }