using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// MakePriceAgrs Data Structure. /// [Serializable] public class MakePriceAgrs : AopObject { /// /// 属性名称 /// [XmlElement("key")] public string Key { get; set; } /// /// 属性值 /// [XmlElement("value")] public string Value { get; set; } } }