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