Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcoMycarParkingLotbarcodeCreateResponse.cs

22 lines
521 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcoMycarParkingLotbarcodeCreateResponse.
/// </summary>
public class AlipayEcoMycarParkingLotbarcodeCreateResponse : AopResponse
{
/// <summary>
/// 返回二维码链接地址
/// </summary>
[JsonProperty("qrcode_url")]
public string QrcodeUrl { get; set; }
/// <summary>
/// 返回状态1为成功0为失败
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}