using System; using System.Collections.Generic; namespace GxPress.Result.App.TopicComment { /// /// 话题评论显示 /// public class TopicCommentPageResult { /// /// 姓名 /// 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; } /// /// 评论ID /// public int Id { get; set; } /// /// 文章ID /// public int TopicId { get; set; } /// /// 被回复数据 /// public List TopicCommentReplyResults { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 是否点赞 /// public bool IsLaud { get; set; } } /// /// 被回复评论 /// public class TopicCommentReplyResult { /// /// 姓名 /// public string Name { get; set; } /// /// 回复姓名 /// public string ReplyName { get; set; } /// /// 内容 /// public string Content { get; set; } /// /// 时间 /// public DateTime? CreatedTime { get; set; } /// /// ID /// public int Id { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 回复人ID /// /// public int ReplyUserId{get;set;} /// /// 是否回复 /// public bool IsUnderstand { get; set; } } }