using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicMenuUserQueryResponse. /// public class AlipayMobilePublicMenuUserQueryResponse : AopResponse { /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 菜单唯一标识 /// [JsonProperty("menu_key")] public string MenuKey { get; set; } /// /// 结果码描述 /// [JsonProperty("msg")] public string Msg { get; set; } } }