using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPassCodeVerifyResponse. /// public class AlipayPassCodeVerifyResponse : AopResponse { /// /// 返回核销流水号及操作结果 /// [XmlElement("biz_result")] public string BizResult { get; set; } /// /// 返回码. /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 是否发码成功的标识。 /// [XmlElement("success")] public bool Success { get; set; } } }