19 lines
449 B
C#
19 lines
449 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMarketingCampaignCrowdDeleteModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiMarketingCampaignCrowdDeleteModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 人群组的唯一标识ID
|
|
/// </summary>
|
|
[XmlElement("crowd_group_id")]
|
|
public string CrowdGroupId { get; set; }
|
|
}
|
|
}
|