using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEcoMycarParkingLotbarcodeCreateResponse.
///
public class AlipayEcoMycarParkingLotbarcodeCreateResponse : AopResponse
{
///
/// 返回二维码链接地址
///
[JsonProperty("qrcode_url")]
public string QrcodeUrl { get; set; }
///
/// 返回状态:1为成功,0为失败
///
[JsonProperty("status")]
public string Status { get; set; }
}
}