| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class lotoDataRequestObj
- {
- [JsonProperty("gameId")]
- public string gameId { get; set; }
- [JsonProperty("HeaderIpRemote")]
- public string HeaderIpRemote { get; set; }
- [JsonProperty("HeaderIsdn")]
- public string HeaderIsdn { get; set; }
- [JsonProperty("requestId")]
- public string requestId { get; set; }
- [JsonProperty("channel")]
- public string channel { get; set; }
- [JsonProperty("language")]
- public string language { get; set; }
- [JsonProperty("cmd")]
- public string cmd { get; set; }
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("key")]
- public string key { get; set; }
- [JsonProperty("data")]
- public lotoDataObj data { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- public lotoDataRequestObj()
- {
- }
-
- }
- }
|