using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// CodeInfo Data Structure.
///
[Serializable]
public class CodeInfo : AopObject
{
///
/// 跳转URL,扫码关注服务窗后会直接跳转到此URL
///
[JsonProperty("goto_url")]
public string GotoUrl { get; set; }
///
/// 场景信息
///
[JsonProperty("scene")]
public Scene Scene { get; set; }
}
}