using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiAdvertCommissionMissionPromoteModel Data Structure.
///
[Serializable]
public class KoubeiAdvertCommissionMissionPromoteModel : AopObject
{
///
/// 推广主键 identify_type=mission-值必须是任务ID identify_type=voucher-值必须是券ID
///
[XmlElement("identify")]
public string Identify { get; set; }
///
/// 推广主键类型 mission-任务 voucher-券
///
[XmlElement("identify_type")]
public string IdentifyType { get; set; }
///
/// 指定推广活动的名称
///
[XmlElement("name")]
public string Name { get; set; }
}
}