using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMobilePublicLabelQueryResponse. /// public class AlipayMobilePublicLabelQueryResponse : AopResponse { /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// 所有标签 /// [JsonProperty("labels")] public List Labels { get; set; } /// /// 结果信息 /// [JsonProperty("msg")] public string Msg { get; set; } } }