TestEntity.cs 948 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.steering.pss.qcm.model
  6. {
  7. class GenericEntity
  8. {
  9. private string maxValue = "";
  10. public string MaxValue
  11. {
  12. get { return maxValue; }
  13. set { maxValue = value; }
  14. }
  15. private string count = "";
  16. public string Count
  17. {
  18. get { return count; }
  19. set { count = value; }
  20. }
  21. private int value = 9;
  22. public int Value
  23. {
  24. get { return this.value; }
  25. set { this.value = value; }
  26. }
  27. private string value2 = "";
  28. public string Value2
  29. {
  30. get { return value2; }
  31. set { value2 = value; }
  32. }
  33. private string test = "";
  34. public string Test
  35. {
  36. get { return test; }
  37. set { test = value; }
  38. }
  39. }
  40. }