using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PromoxCrowdMatchModel Data Structure.
///
[Serializable]
public class PromoxCrowdMatchModel : AopObject
{
///
/// 客群码
///
[XmlElement("crowd_code")]
public string CrowdCode { get; set; }
///
/// 是否匹配
///
[XmlElement("is_match")]
public bool IsMatch { get; set; }
}
}