using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicAccountQueryResponse. /// public class AlipayMobilePublicAccountQueryResponse : AopResponse { /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 菜单唯一标识 /// [JsonProperty("menu_key")] public string MenuKey { get; set; } /// /// 结果描述 /// [JsonProperty("msg")] public string Msg { get; set; } /// /// 绑定账户列表 /// [JsonProperty("public_bind_accounts")] public List PublicBindAccounts { get; set; } /// /// 备注信息 /// [JsonProperty("remark")] public string Remark { get; set; } } }