using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenPublicAccountQueryResponse. /// public class AlipayOpenPublicAccountQueryResponse : AopResponse { /// /// 绑定账户列表 /// [XmlArray("public_bind_accounts")] [XmlArrayItem("std_public_bind_account")] public List PublicBindAccounts { get; set; } } }