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