You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
1.7 KiB

2 years ago
  1. using System.Collections.Generic;
  2. namespace EasyBL.WebApi.Message
  3. {
  4. /// <summary>
  5. /// It focus on return message.
  6. /// </summary>
  7. public class RequestMessage : MessageBase
  8. {
  9. public RequestMessage()
  10. {
  11. }
  12. public class StackTraceDumpItem
  13. {
  14. public string Name
  15. {
  16. get;
  17. set;
  18. }
  19. public List<object> Parameters
  20. {
  21. get;
  22. set;
  23. }
  24. public string Buttonclick
  25. {
  26. get;
  27. set;
  28. }
  29. }
  30. public class StackTraceDump
  31. {
  32. public List<RequestMessage.StackTraceDumpItem> Stack
  33. {
  34. get;
  35. set;
  36. }
  37. }
  38. public string ClientIP
  39. {
  40. get;
  41. set;
  42. }
  43. public RequestMessage.StackTraceDump TRACEDUMP
  44. {
  45. get;
  46. set;
  47. }
  48. public string LANG
  49. {
  50. get;
  51. set;
  52. }
  53. public string TOKEN
  54. {
  55. get;
  56. set;
  57. }
  58. public string SIGNATURE
  59. {
  60. get;
  61. set;
  62. }
  63. public string TIMESTAMP
  64. {
  65. get;
  66. set;
  67. }
  68. public string NONCE
  69. {
  70. get;
  71. set;
  72. }
  73. public Dictionary<string, string> CUSTOMDATA
  74. {
  75. get;
  76. set;
  77. }
  78. public string USERID
  79. {
  80. get;
  81. set;
  82. }
  83. public string ORIGID
  84. {
  85. get;
  86. set;
  87. }
  88. }
  89. }