using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.OtherWaiMai { /// /// 百度商品规格 /// [Serializable] [JsonObject(MemberSerialization.OptIn)] public class BaiduProductAttr { /// /// 规格 /// [JsonProperty(PropertyName = "option")] public string Option { get; set; } /// /// 规格名称 /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } /// /// 百度规格ID /// [JsonProperty(PropertyName = "baidu_attr_id")] public string Baidu_attr_id { get; set; } /// /// 第三方规格ID /// [JsonProperty(PropertyName = "attr_id")] public string Attr_id { get; set; } } }