using System; using System.Collections.Generic; namespace GxPress.Result.Reply { public class ReplyPraiseCountResult { public int PraiseCount{get;set;} public IEnumerable Item { get; set; } } public class ReplyResult { /// /// 评论ID /// /// public int Id { get; set; } /// /// 来源ID /// /// public int SourceId { get; set; } /// /// 评论内容 /// /// public string CommentContent { get; set; } /// /// /// /// public int Pid { get; set; } /// /// 类型 /// /// public int TypeValue { get; set; } /// /// 话题或者笔记的标题 /// /// public string Title { get; set; } /// /// 话题或者笔记的内容 /// /// public string Content { get; set; } /// /// 回复人姓名 /// /// public string UserName { get; set; } /// /// 回复人头像 /// /// public string AvatarUrl { get; set; } /// /// 回复时间 /// /// public DateTime? CreatedDate { get; set; } /// /// 回复人姓名 /// /// public int UserId { get; set; } /// /// 当前用户姓名 /// /// public string Name { get; set; } /// /// 备注 /// /// public string Remark { get; set; } /// /// 是否阅读 /// /// public bool IsRead { get; set; } /// /// 小组Id /// /// public int GroupId { get; set; } /// /// 小组名称 /// /// public string GroupName { get; set; } /// /// 是否小组 /// /// public bool IsGroup { get; set; } /// /// 是否评论 /// /// public bool IsComment { get; set; } } }