123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using System;
- using System.Collections.Generic;
- using GxPress.Common.Page;
- using GxPress.Result.App.Analyze;
- namespace GxPress.Result.App.Topic
- {
-
-
-
- public class TopicDetailResult
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string Title { get; set; }
-
-
-
- public int UserId { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public string HtmlContent { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public int ReadCount { get; set; }
-
-
-
- public DateTime? CreatedDate { get; set; }
-
-
-
- public int CommentCount { get; set; }
-
-
-
- public int CollectCount { get; set; }
-
-
-
- public int RetransmissionCount { get; set; }
-
-
-
- public int PraiseCount { get; set; }
-
-
-
- public PagedList<PraisePageResult> TopicPraisePagedList { get; set; }
-
-
-
- public bool IsAdmin { get; set; }
-
-
-
- public List<ContentJsonData> Data { get; set; }
-
-
-
- public bool IsCollect { get; set; }
-
-
-
- public bool IsRetransmission { get; set; }
-
-
-
- public bool IsPraise { get; set; }
- }
- }
|