using System; using System.Collections.Generic; using System.Linq; using System.Text; using Newtonsoft.Json; namespace POSV.Dianping { [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BasicResponseModel { /// /// 返回码 /// [JsonProperty(PropertyName = "code")] public int Code { get; set; } /// /// 返回信息 /// [JsonProperty(PropertyName = "msg")] public string Message { get; set; } /// /// 返回结果 /// [JsonProperty(PropertyName = "content")] public T Content { get; set; } } }