| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betProcessObj
- {
- [JsonProperty("seq")]
- public string seq { get; set; }
- [JsonProperty("ip")]
- public string ip { get; set; }
- [JsonProperty("port")]
- public string port { get; set; }
- [JsonProperty("timeout")]
- public string timeout { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class betProcessObjList
- {
- [JsonProperty("listBetProcess")]
- public betProcessObj[] listBetProcess { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|