using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace CommonObj.model { public class channelObj { [JsonProperty("id")] public string id { get; set; } [JsonProperty("code")] public string code { get; set; } [JsonProperty("name")] public string name { get; set; } [JsonProperty("partnerCode")] public string partnerCode { get; set; } [JsonProperty("usersName")] public string usersName { get; set; } [JsonProperty("password")] public string password { get; set; } [JsonProperty("note")] public string note { get; set; } [JsonProperty("sysdate")] public string sysdate { get; set; } [JsonProperty("isAuthen")] public string isAuthen { get; set; } [JsonProperty("keyEncrypt")] public string keyEncrypt { get; set; } [JsonProperty("token")] public string token { get; set; } [JsonProperty("listIp")] public string listIp { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }