| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- 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("success_code")]
- public string success_code { 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);
- }
- }
- }
|