using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AntfortuneYebInfoAdvertisingQueryModel Data Structure.
///
[Serializable]
public class AntfortuneYebInfoAdvertisingQueryModel : AopObject
{
///
/// 参数名:mobile 应用场景:外部渠道传递手机号,由余额宝来判断是否需要进行投放并告知外部渠道 如何获取:外部渠道自己获取传过来
///
[XmlElement("mobile")]
public string Mobile { get; set; }
}
}