| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using ApiProcess.Models.bet;
- using CommonObj.model;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.balance
- {
- public class apiServiceObj
- {
- [JsonProperty("ws_id")]
- public string ws_id { get; set; }
- [JsonProperty("ws_name")]
- public string ws_name { get; set; }
- [JsonProperty("ws_code")]
- public string ws_code { get; set; }
- [JsonProperty("wsdl")]
- public string wsdl { get; set; }
- [JsonProperty("msg_template")]
- public string msg_template { get; set; }
- [JsonProperty("error_tag")]
- public string error_tag { get; set; }
- [JsonProperty("isActive")]
- public string isActive { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class apiServiceObjList : Response
- {
- [JsonProperty("rowsOnPage")]
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("apiServiceObjList")]
- public apiServiceObj[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|