using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BuyerPayDetail Data Structure. /// [Serializable] public class BuyerPayDetail : AopObject { /// /// 买家支付金额 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 支付渠道 /// [XmlElement("pay_channel")] public string PayChannel { get; set; } } }