20 lines
622 B
C#
20 lines
622 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// KoubeiMarketingCampaignIntelligentTemplateConsultResponse.
|
||
/// </summary>
|
||
public class KoubeiMarketingCampaignIntelligentTemplateConsultResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 营销模板的编号 GENERAL_NORMAL:全场普通; ITEM_NORMAL:单品普通; CROWD_NORMAL: 千人千券普通;
|
||
/// </summary>
|
||
[XmlArray("template_codes")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> TemplateCodes { get; set; }
|
||
}
|
||
}
|