using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SkuPropertyValue Data Structure. /// [Serializable] public class SkuPropertyValue : AopObject { /// /// 外部sku属性值ID,由外部商户定义 /// [XmlElement("out_pv_id")] public string OutPvId { get; set; } /// /// 外部商户sku属性值 /// [XmlElement("value")] public string Value { get; set; } } }