reSearchDetailBetObj.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. using CommonObj.model;
  2. using Newtonsoft.Json;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace CommonObj.lotoModel
  7. {
  8. public class reSearchDetailBetObj
  9. {
  10. [JsonProperty("msisdn")]
  11. public string msisdn { get; set; }
  12. [JsonProperty("lottery")]
  13. public string lottery { get; set; }
  14. [JsonProperty("game")]
  15. public string game { get; set; }
  16. [JsonProperty("channel")]
  17. public string channel { get; set; }
  18. [JsonProperty("ticketId")]
  19. public string ticketId { get; set; }
  20. [JsonProperty("ticketCode")]
  21. public string ticketCode { get; set; }
  22. [JsonProperty("buyTime")]
  23. public string buyTime { get; set; }
  24. [JsonProperty("isEvening")]
  25. public string isEvening { get; set; }
  26. [JsonProperty("drawTime")]
  27. public string drawTime { get; set; }
  28. [JsonProperty("money")]
  29. public string money { get; set; }
  30. [JsonProperty("moneyWin")]
  31. public string moneyWin { get; set; }
  32. [JsonProperty("result")]
  33. public string result { get; set; }
  34. public override string ToString()
  35. {
  36. return JsonConvert.SerializeObject(this);
  37. }
  38. }
  39. public class reSearchDetailBetListObj : Response
  40. {
  41. [JsonProperty("list")]
  42. public reSearchDetailBetObj[] list { get; set; }
  43. public override string ToString()
  44. {
  45. return JsonConvert.SerializeObject(this);
  46. }
  47. }
  48. }