using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayMarketingToolFengdieTemplateQueryResponse. /// public class AlipayMarketingToolFengdieTemplateQueryResponse : AopResponse { /// /// 开发者开发上传的H5模板列表 /// [XmlArray("template")] [XmlArrayItem("fengdie_template")] public List Template { get; set; } } }