using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ItemPropertyInfo Data Structure. /// [Serializable] public class ItemPropertyInfo : AopObject { /// /// 属性名称 /// [XmlElement("property_key")] public string PropertyKey { get; set; } /// /// 属性值列表 /// [XmlArray("property_value_list")] [XmlArrayItem("string")] public List PropertyValueList { get; set; } } }