You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
977 B
C#

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