using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMobilePublicAccountlistGetResponse. /// public class AlipayMobilePublicAccountlistGetResponse : AopResponse { /// /// 服务窗列表 /// [XmlElement("account_list")] public string AccountList { get; set; } /// /// 响应码 /// [XmlElement("code")] public string Code { get; set; } /// /// 结果描述 /// [XmlElement("msg")] public string Msg { get; set; } } }