using System; using System.Collections.Generic; using System.Text; using GxPress.Common.Page; using GxPress.EnumConst; using GxPress.Result.App.Analyze; namespace GxPress.Result.Notice { /// /// 通知详情 /// public class NoticeDetailResult { /// /// 通知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 List NoticeAddresseeNames { get; set; } /// /// 新版收件人 /// /// public IEnumerable AddresseeUserMiddles { get; set; } /// /// 新版抄送人 /// /// public IEnumerable CcUserMiddles { get; set; } /// /// 收件数量 /// public int AllCount { 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 NoticePraisePagedList { get; set; } /// /// JsonData /// /// public List Data { get; set; } /// /// 是否收藏 /// public bool IsCollect { get; set; } /// /// 是否点赞 /// public bool IsPraise { get; set; } /// /// 是否转发 /// public bool IsRetransmission { get; set; } /// /// 默认值 /// public NoticeDetailResult() { NoticePraisePagedList = new PagedList(); } /// /// 是否是当前用户创建 /// /// public bool IsAdmin { get; set; } } }