1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Result.NoticeComment
- {
-
-
-
- public class NoticeCommentPageResult
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public DateTime? CreatedTime { get; set; }
-
-
-
- public string FloorCount { get; set; }
-
-
-
- public int LaudCount { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public int ArticleId { get; set; }
-
-
-
- public List<NoticeCommentReplyResult> NoticeCommentReplyResults { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public bool IsLaud { get; set; }
- }
-
-
-
- public class NoticeCommentReplyResult
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string ReplyName { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public DateTime? CreatedTime { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public bool IsUnderstand { get; set; }
- }
- }
|