paramObj.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using ApiProcess.Models.bet;
  6. using CommonObj.model;
  7. using Newtonsoft.Json;
  8. namespace ApiProcess.Models.balance
  9. {
  10. public class paramObj
  11. {
  12. [JsonProperty("id")]
  13. public string id { get; set; }
  14. [JsonProperty("code")]
  15. public string code { get; set; }
  16. [JsonProperty("values")]
  17. public string values { get; set; }
  18. [JsonProperty("note")]
  19. public string note { get; set; }
  20. [JsonProperty("status")]
  21. public string status { get; set; }
  22. [JsonProperty("codeGroup")]
  23. public string codeGroup { get; set; }
  24. [JsonProperty("display0")]
  25. public string display0 { get; set; }
  26. [JsonProperty("display1")]
  27. public string display1 { get; set; }
  28. [JsonProperty("display2")]
  29. public string display2 { get; set; }
  30. [JsonProperty("display3")]
  31. public string display3 { get; set; }
  32. [JsonProperty("display4")]
  33. public string display4 { get; set; }
  34. [JsonProperty("display5")]
  35. public string display5 { get; set; }
  36. [JsonProperty("gameId")]
  37. public string gameId { get; set; }
  38. [JsonProperty("channel")]
  39. public string channel { get; set; }
  40. public override string ToString()
  41. {
  42. return JsonConvert.SerializeObject(this);
  43. }
  44. }
  45. public class paramObjList : Response
  46. {
  47. [JsonProperty("rowsOnPage")]
  48. public string rowsOnPage { get; set; }
  49. [JsonProperty("seqPage")]
  50. public string seqPage { get; set; }
  51. [JsonProperty("totalPage")]
  52. public string totalPage { get; set; }
  53. [JsonProperty("paramObjList")]
  54. public paramObj[] list { get; set; }
  55. public override string ToString()
  56. {
  57. return JsonConvert.SerializeObject(this);
  58. }
  59. }
  60. }