using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicMenuGetResponse. /// public class AlipayMobilePublicMenuGetResponse : AopResponse { /// /// success /// [JsonProperty("code")] public string Code { get; set; } /// /// 菜单内容 /// [JsonProperty("menu_content")] public string MenuContent { get; set; } /// /// 成功 /// [JsonProperty("msg")] public string Msg { get; set; } } }