Query.cs 666 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace XYY.PerformanceCount.Standard
  5. {
  6. public class Query
  7. {
  8. public DateTime StartTime
  9. {
  10. get; set;
  11. }
  12. public DateTime EndTime
  13. {
  14. get; set;
  15. }
  16. public string MethodName
  17. {
  18. get; set;
  19. }
  20. public string SearchParameter
  21. {
  22. get; set;
  23. }
  24. public long ExecutionTime
  25. {
  26. get; set;
  27. }
  28. public int Index
  29. {
  30. get; set;
  31. }
  32. public int Size
  33. {
  34. get; set;
  35. }
  36. }
  37. }