123456789101112131415161718192021222324252627282930313233343536373839 |
- 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; }
-
-
-
- public string HtmlContent { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public int FolderId { get; set; }
-
-
-
-
- public bool IsTopic{get;set;}
- }
- }
|