betResponseObj.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using Newtonsoft.Json;
  6. namespace ApiProcess.Models.bet
  7. {
  8. public class betResponseObj: ResCommnon
  9. {
  10. [JsonProperty("serviceId")]
  11. public string serviceId { get; set; }
  12. [JsonProperty("randomId")]
  13. public string randomId { get; set; }
  14. [JsonProperty("totalMoney")]
  15. public string totalMoney { get; set; }
  16. [JsonProperty("requestIdUi")]
  17. public string requestIdUi { get; set; }
  18. [JsonProperty("requestIdApi")]
  19. public string requestIdApi { get; set; }
  20. [JsonProperty("tranId")]
  21. public string tranId { get; set; }
  22. [JsonProperty("billCode")]
  23. public string billCode { get; set; }
  24. [JsonProperty("tranCode")]
  25. public string tranCode { get; set; }
  26. [JsonProperty("payContent")]
  27. public string payContent { get; set; }
  28. public override string ToString()
  29. {
  30. return JsonConvert.SerializeObject(this);
  31. }
  32. }
  33. }