using System;
using System.Collections.Generic;
using GxPress.Common.Page;
using GxPress.Result.App.Analyze;
namespace GxPress.Result.App.Topic
{
///
/// 通知详情
///
public class TopicDetailResult
{
///
/// 话题ID
///
public int Id { get; set; }
///
/// 标题
///
public string Title { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 内容
///
public string Content { get; set; }
///
/// 内容
///
public string HtmlContent { get; set; }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 阅读量
///
public int ReadCount { get; set; }
///
/// 创建时间
///
public DateTime? CreatedDate { get; set; }
///
/// 评论数量
///
public int CommentCount { get; set; }
///
/// 收藏数量
///
public int CollectCount { get; set; }
///
/// 转发数量
///
public int RetransmissionCount { get; set; }
///
/// 点赞数量
///
public int PraiseCount { get; set; }
///
/// 文章点赞数据
///
public PagedList TopicPraisePagedList { get; set; }
///
/// 是否创建人
///
public bool IsAdmin { get; set; }
///
/// 内容Json数据
///
public List Data { get; set; }
///
/// 是否收藏
///
public bool IsCollect { get; set; }
///
/// 是否转发
///
public bool IsRetransmission { get; set; }
///
/// 是否点赞
///
public bool IsPraise { get; set; }
///
/// 头像
///
///
public string AvatarUrl { get; set; }
///
/// 小组ID
///
///
public int GroupId { get; set; }
///
/// 小组名称
///
///
public string GroupName { get; set; }
}
}