using System;
using System.Collections.Generic;
using GxPress.Result.Media;
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; }
}
///
/// 笔记分页没有文件夹
///
public class NoteNotFolderPageResult
{
///
/// 笔记id
///
///
public int Id { get; set; }
///
///
///
///
public int MiddleId { get; set; }
///
/// 标题
///
///
public string Title { get; set; }
///
/// 媒体ID 获取摘录
///
///
public int MediaId { get; set; }
///
/// 数据类型 1 没有 2 图 3 文件
///
public int DataType { get; set; }
///
/// 文件数量
///
///
public int FileCount { get; set; }
///
/// 数据
///
public List Data { get; set; }
///
/// 是否摘录
///
///
public bool IsExtract { get; set; }
///
/// 笔记摘录
///
///
public MediaNoteResult MediaNoteResult { get; set; }
///
/// 内容
///
///
public string Content { get; set; }
///
/// 创建时间
///
///
public DateTime CreatedDate { get; set; }
///
/// 用户姓名
///
///
public string Name { get; set; }
///
/// 用户Id
///
///
public string UserId { get; set; }
///
/// 头像
///
///
public string AvatarUrl { 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; }
///
/// 阅读数量
///
///
public int ReadCount { get; set; }
///
/// 文件夹名称
///
public string FolderName { get; set; }
///
/// 文件夹Id
///
public int FolderId { get; set; }
///
/// 是否置顶
///
///
public bool IsTop { get; set; }
///
/// 部门ID
///
///
public string DepartmentName { get; set; }
}
public class NoteAddOrModifyResult
{
public int Id { get; set; }
public int FolderId { get; set; }
public string FolderName { get; set; }
}
}