using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayOpenPublicAccountQueryResponse. /// public class AlipayOpenPublicAccountQueryResponse : AopResponse { /// /// 绑定账户列表 /// [JsonProperty("public_bind_accounts")] public List PublicBindAccounts { get; set; } } }