19 lines
523 B
C#
19 lines
523 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KoubeiMarketingCampaignRetailDmQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KoubeiMarketingCampaignRetailDmQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 内容id,通过调用koubei.marketing.campaign.retail.dm.create接口创建内容时返回的内容ID
|
||
/// </summary>
|
||
[XmlElement("content_id")]
|
||
public string ContentId { get; set; }
|
||
}
|
||
}
|