using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// MybankPaymentTradeQrcodeCreateResponse.
///
public class MybankPaymentTradeQrcodeCreateResponse : AopResponse
{
///
/// 加密的token
///
[XmlElement("encrypt_token")]
public string EncryptToken { get; set; }
///
/// url地址
///
[XmlElement("url")]
public string Url { get; set; }
}
}