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