using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPassVerifyQueryResponse. /// public class AlipayPassVerifyQueryResponse : AopResponse { /// /// 查询成功时返回的结果信息 /// [XmlElement("biz_result")] public string BizResult { get; set; } /// /// 返回码。 /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 查询是否成功的标识 /// [XmlElement("success")] public bool Success { get; set; } } }