using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenPublicLabelQueryResponse. /// public class AlipayOpenPublicLabelQueryResponse : AopResponse { /// /// 该服务窗拥有的标签列表 /// [XmlArray("label_list")] [XmlArrayItem("public_label")] public List LabelList { get; set; } } }