lotoBlackGet.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 lotoBlackGet
  9. {
  10. [JsonProperty("seq")]
  11. public string seq { get; set; }
  12. [JsonProperty("id")]
  13. public string id { get; set; }
  14. [JsonProperty("msisdn")]
  15. public string msisdn { get; set; }
  16. [JsonProperty("date")]
  17. public string date { get; set; }
  18. [JsonProperty("users")]
  19. public string users { get; set; }
  20. [JsonProperty("isLock")]
  21. public string isLock { get; set; }
  22. [JsonProperty("note")]
  23. public string note { get; set; }
  24. public override string ToString()
  25. {
  26. return JsonConvert.SerializeObject(this);
  27. }
  28. }
  29. public class lotoBlackGetList : ResCommnon
  30. {
  31. [JsonProperty("rowsOnPage")]
  32. public string rowsOnPage { get; set; }
  33. [JsonProperty("seqPage")]
  34. public string seqPage { get; set; }
  35. [JsonProperty("totalPage")]
  36. public string totalPage { get; set; }
  37. [JsonProperty("totalRow")]
  38. public string totalRow { get; set; }
  39. [JsonProperty("listLotoBlackList")]
  40. public lotoBlackGet[] listLotoBlackList { get; set; }
  41. public override string ToString()
  42. {
  43. return JsonConvert.SerializeObject(this);
  44. }
  45. }
  46. }