using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEcoMycarParkingLotbarcodeCreateResponse. /// public class AlipayEcoMycarParkingLotbarcodeCreateResponse : AopResponse { /// /// 返回二维码链接地址 /// [XmlElement("qrcode_url")] public string QrcodeUrl { get; set; } /// /// 返回状态:1为成功,0为失败 /// [XmlElement("status")] public string Status { get; set; } } }