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.

35 lines
818 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 BaiduProductFeatures
{
/// <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_feature_id")]
public string Baidu_feature_id { get; set; }
}
}