using System;
using System.Collections.Generic;
using System.Text;
using GxPress.Result.AddressBookGroupUser;
namespace GxPress.Result.Comment
{
///
/// 文章评论显示
///
public class CommentPageResult
{
///
/// 姓名
///
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 ArticleId { get; set; }
///
/// 被回复数据
///
public List CommentReplyResults { get; set; }
///
/// 用户ID
///
public int UserId { get; set; }
///
/// 当前用户是否点赞
///
public bool IsLaud { get; set; }
}
///
/// 被回复评论
///
public class CommentReplyResult
{
///
/// 姓名
///
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; }
}
}