using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayPassVerifyQueryResponse.
///
public class AlipayPassVerifyQueryResponse : AopResponse
{
///
/// 查询成功时返回的结果信息
///
[JsonProperty("biz_result")]
public string BizResult { get; set; }
///
/// 返回码。
///
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
///
/// 查询是否成功的标识
///
[JsonProperty("success")]
public bool Success { get; set; }
}
}