using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AntfortuneContentCommunityHoteventListQueryModel Data Structure.
///
[Serializable]
public class AntfortuneContentCommunityHoteventListQueryModel : AopObject
{
///
/// 某天的热门事件
///
[XmlElement("date")]
public string Date { get; set; }
///
/// 租户id
///
[XmlElement("tenant_id")]
public string TenantId { get; set; }
///
/// 热门事件榜单的topn数量
///
[XmlElement("topn_count")]
public long TopnCount { get; set; }
}
}