using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayPassCodeAddResponse. /// public class AlipayPassCodeAddResponse : AopResponse { /// /// 成功时返回业务参数 /// [XmlArray("biz_result")] [XmlArrayItem("string")] public List BizResult { get; set; } /// /// 返回码. /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 是否发码成功的标识。 /// [XmlElement("success")] public bool Success { get; set; } } }