12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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; }
- public int Id { get; set; }
- }
- }
|