using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ServiceAttributeSimpleVO Data Structure. /// [Serializable] public class ServiceAttributeSimpleVO : AopObject { /// /// 服务属性key /// [XmlElement("key")] public string Key { get; set; } /// /// abcd /// [XmlArray("value")] [XmlArrayItem("string")] public List Value { get; set; } } }