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() { } } }