using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPassSyncAddResponse. /// public class AlipayPassSyncAddResponse : AopResponse { /// /// 成功时返回的业务参数信息。 /// [XmlElement("biz_result")] public string BizResult { get; set; } /// /// 当新增alipass不成功时,产生的错误码。 /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 成功标识 /// [XmlElement("success")] public bool Success { get; set; } } }