1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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; }
-
-
-
-
- public int MediaId { get; set; }
-
-
-
-
- public int MediaType { get; set; }
-
-
-
-
- public string CatalogId { get; set; }
-
-
-
-
- public string ChapterId { get; set; }
-
-
-
-
- public bool IsDraft { get; set; }
- }
- }
|