using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiMarketingCampaignActivityBatchqueryResponse. /// public class KoubeiMarketingCampaignActivityBatchqueryResponse : AopResponse { /// /// 活动列表 /// [XmlArray("camp_sets")] [XmlArrayItem("camp_base_dto")] public List CampSets { get; set; } /// /// 总数量 /// [XmlElement("total_number")] public string TotalNumber { get; set; } } }