namespace GxPress.Request.App.Note { /// /// 笔记添加 /// public class NoteInRequest { /// /// 标题 /// public string Title { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// Html内容 /// public string HtmlContent { get; set; } /// /// 用户 /// public int UserId { get; set; } /// /// 文件夹ID /// public int FolderId { get; set; } /// /// 是否话题 /// /// public bool IsTopic { get; set; } /// /// 媒体ID /// /// public int MediaId { get; set; } /// /// 媒体类型 /// /// public int MediaType { get; set; } /// /// 目录ID /// /// public string CatalogId { get; set; } /// /// 章节ID /// /// public string ChapterId { get; set; } /// /// 是否是草稿 /// /// public bool IsDraft { get; set; } public int Id { get; set; } } }