using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayOpenPublicLabelQueryResponse.
///
public class AlipayOpenPublicLabelQueryResponse : AopResponse
{
///
/// 该服务窗拥有的标签列表
///
[JsonProperty("label_list")]
public List LabelList { get; set; }
}
}