using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicLabelAddResponse. /// public class AlipayMobilePublicLabelAddResponse : AopResponse { /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 标签编码 /// [JsonProperty("id")] public long Id { get; set; } /// /// 结果信息 /// [JsonProperty("msg")] public string Msg { get; set; } /// /// 标签名称 /// [JsonProperty("name")] public string Name { get; set; } } }