using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// QRcode Data Structure.
///
[Serializable]
public class QRcode : AopObject
{
///
/// 用户ID
///
[JsonProperty("card_id")]
public string CardId { get; set; }
///
/// qrcode地址
///
[JsonProperty("qrcode_url")]
public string QrcodeUrl { get; set; }
}
}