using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ItemProperty Data Structure. /// [Serializable] public class ItemProperty : AopObject { /// /// 属性;内容不能有空格 /// [XmlElement("prop_key")] public string PropKey { get; set; } /// /// 属性值;内容不能有空格 /// [XmlArray("prop_values")] [XmlArrayItem("string")] public List PropValues { get; set; } } }