using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace CommonObj.model { public class errCodeObj { [JsonProperty("id")] public string id { get; set; } [JsonProperty("errCode")] public string errCode { get; set; } [JsonProperty("msg0")] public string msg0 { get; set; } [JsonProperty("msg1")] public string msg1 { get; set; } [JsonProperty("msg2")] public string msg2 { get; set; } [JsonProperty("msg3")] public string msg3 { get; set; } [JsonProperty("msg4")] public string msg4 { get; set; } [JsonProperty("msg5")] public string msg5 { get; set; } [JsonProperty("channel")] public string channel { get; set; } [JsonProperty("note")] public string note { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }