using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// IndustryExtendField Data Structure. /// [Serializable] public class IndustryExtendField : AopObject { /// /// 扩展参数的key值 /// [XmlElement("key")] public string Key { get; set; } /// /// 扩展参数的value值 /// [XmlElement("value")] public string Value { get; set; } } }