using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ThirdErrorContext Data Structure. /// [Serializable] public class ThirdErrorContext : AopObject { /// /// 支付宝三代错误码内部值 /// [XmlElement("third_error_code")] public string ThirdErrorCode { get; set; } /// /// thirdErrorCode的错误描述 /// [XmlElement("third_error_msg")] public string ThirdErrorMsg { get; set; } } }