using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// ZhimaAuthInfoAuthqueryResponse.
///
public class ZhimaAuthInfoAuthqueryResponse : AopResponse
{
///
/// 是否已经授权,已授权:true,未授权:false
///
[JsonProperty("authorized")]
public bool Authorized { get; set; }
}
}