blackListGetList.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 blackListGetList
  11. {
  12. [JsonProperty("id")]
  13. public string id { get; set; }
  14. [JsonProperty("msisdn")]
  15. public string msisdn { get; set; }
  16. [JsonProperty("type")]
  17. public string type { get; set; }
  18. [JsonProperty("serviceId")]
  19. public string serviceId { get; set; }
  20. [JsonProperty("campaignId")]
  21. public string campaignId { get; set; }
  22. [JsonProperty("sysdate")]
  23. public string sysdate { get; set; }
  24. [JsonProperty("users")]
  25. public string users { get; set; }
  26. [JsonProperty("campaignName")]
  27. public string campaignName { get; set; }
  28. [JsonProperty("isActive")]
  29. public string isActive { get; set; }
  30. public override string ToString()
  31. {
  32. return JsonConvert.SerializeObject(this);
  33. }
  34. }
  35. public class blackListGetListArr : Response
  36. {
  37. [JsonProperty("list")]
  38. public blackListGetList[] list { get; set; }
  39. public override string ToString()
  40. {
  41. return JsonConvert.SerializeObject(this);
  42. }
  43. }
  44. }