using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicMenuAddResponse. /// public class AlipayMobilePublicMenuAddResponse : AopResponse { /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 成功 /// [JsonProperty("msg")] public string Msg { get; set; } } }