using System; using System.Collections.Generic; using System.Text; 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;} } }