namespace GxPress.Result.App.Note { /// /// 话题笔记显示web版本 /// public class NoteTopicResult { /// /// 笔记id /// /// public int Id { get; set; } /// /// 标题 /// /// public string Title { get; set; } /// /// 内容 /// /// public string Content { get; set; } /// /// 内容 /// /// public string HtmlContent { get; set; } /// /// 创建时间 /// /// public string CreatedDate { get; set; } /// /// 用户姓名 /// /// public string UserName { get; set; } /// /// 用户Id /// /// public string UserId { get; set; } /// /// 头像 /// /// public string AvatarUrl { get; set; } /// /// 文件夹ID /// /// public int FolderId { get; set; } /// /// 文件夹名称 /// /// public string FolderName { get; set; } /// /// 点赞数量 /// /// public int PraiseCount { get; set; } /// /// 是否点赞 /// /// public bool IsPraise { get; set; } /// /// 评论数量 /// /// public int CommentCount { get; set; } /// /// 转发数量 /// /// public int RetransmissionCount { get; set; } /// /// 是否转发 /// /// public bool IsRetransmission { get; set; } /// /// 是否收藏 /// /// public bool IsCollect { get; set; } } }