using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ItemSkuPropertyInfo Data Structure. /// [Serializable] public class ItemSkuPropertyInfo : AopObject { /// /// 属性 /// [XmlElement("property_key")] public string PropertyKey { get; set; } /// /// 属性值 /// [XmlElement("property_value")] public string PropertyValue { get; set; } } }