using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayPassFileAddResponse. /// public class AlipayPassFileAddResponse : AopResponse { /// /// 业务结果 /// [XmlElement("biz_result")] public string BizResult { get; set; } /// /// 业务错误码 /// [XmlElement("error_code")] public string ErrorCode { get; set; } /// /// 是否成功标识:T-成功;F-失败 /// [XmlElement("success")] public string Success { get; set; } } }