using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenPublicLifeLabelBatchqueryResponse. /// public class AlipayOpenPublicLifeLabelBatchqueryResponse : AopResponse { /// /// 标签列表 /// [XmlArray("labels")] [XmlArrayItem("life_label")] public List Labels { get; set; } } }