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