using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicMenuQueryResponse. /// public class AlipayMobilePublicMenuQueryResponse : AopResponse { /// /// 所有菜单列表json串 /// [JsonProperty("all_menu_list")] public string AllMenuList { get; set; } /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 结果描述 /// [JsonProperty("msg")] public string Msg { get; set; } } }