lotoDataRequestObj.cs 1.2 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 lotoDataRequestObj
  9. {
  10. [JsonProperty("gameId")]
  11. public string gameId { get; set; }
  12. [JsonProperty("HeaderIpRemote")]
  13. public string HeaderIpRemote { get; set; }
  14. [JsonProperty("HeaderIsdn")]
  15. public string HeaderIsdn { get; set; }
  16. [JsonProperty("requestId")]
  17. public string requestId { get; set; }
  18. [JsonProperty("channel")]
  19. public string channel { get; set; }
  20. [JsonProperty("language")]
  21. public string language { get; set; }
  22. [JsonProperty("cmd")]
  23. public string cmd { get; set; }
  24. [JsonProperty("serviceId")]
  25. public string serviceId { get; set; }
  26. [JsonProperty("key")]
  27. public string key { get; set; }
  28. [JsonProperty("data")]
  29. public lotoDataObj data { get; set; }
  30. public override string ToString()
  31. {
  32. return JsonConvert.SerializeObject(this);
  33. }
  34. public lotoDataRequestObj()
  35. {
  36. }
  37. }
  38. }