using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KbdishPropertyValueInfo Data Structure. /// [Serializable] public class KbdishPropertyValueInfo : AopObject { /// /// 属性值排序字段,从1一直递增到5 /// [XmlElement("sort")] public string Sort { get; set; } /// /// 销售属性值 /// [XmlElement("value")] public string Value { get; set; } } }