1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- namespace GxPress.Result.Web
- {
- public class NoteResult
- {
- }
-
-
-
- public class NoteUserExtractResult
- {
-
-
-
-
- public int Id { get; set; }
-
-
-
-
- public string CreatedDate { get; set; }
-
-
-
-
- public string Title { get; set; }
-
-
-
-
- public string Content { get; set; }
-
-
-
-
- public string UserId { get; set; }
-
-
-
-
- public string ReadCount { get; set; }
-
-
-
-
- public string HtmlContent { get; set; }
-
-
-
-
- public string MediaId { get; set; }
-
-
-
-
- public string CatalogId { get; set; }
-
-
-
-
- public string ChapterId { get; set; }
-
-
-
-
- public int PraiseCount { get; set; }
-
-
-
-
- public bool IsPraise { get; set; }
-
-
-
-
- public int CommentCount { get; set; }
-
-
-
-
- public int RetransmissionCount { get; set; }
-
-
-
-
- public bool IsRetransmission { get; set; }
-
-
-
-
- public string Name { get; set; }
-
-
-
-
- public string AvatarUrl { get; set; }
- }
- }
|