using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SingleArticleAnalysisData Data Structure.
///
[Serializable]
public class SingleArticleAnalysisData : AopObject
{
///
/// 人均阅读时长
///
[XmlElement("avg_read_time")]
public string AvgReadTime { get; set; }
///
/// 文章发布日期
///
[XmlElement("date")]
public string Date { get; set; }
///
/// 送达人数
///
[XmlElement("deliver_user_cnt")]
public long DeliverUserCnt { get; set; }
///
/// 曝光人数
///
[XmlElement("expose_user_cnt")]
public long ExposeUserCnt { get; set; }
///
/// 点赞数
///
[XmlElement("praise_user_cnt")]
public long PraiseUserCnt { get; set; }
///
/// 阅读人数
///
[XmlElement("read_user_cnt")]
public long ReadUserCnt { get; set; }
///
/// 评论数
///
[XmlElement("reply_user_cnt")]
public long ReplyUserCnt { get; set; }
///
/// 分享人数
///
[XmlElement("share_user_cnt")]
public long ShareUserCnt { get; set; }
///
/// 文章标题
///
[XmlElement("title")]
public string Title { get; set; }
}
}