namespace Easy.Admin.Application.Client.Dtos;
public class CommentOutput
{
///
/// 评论ID
///
public long Id { get; set; }
///
/// 博主标识
///
public bool IsBlogger { get; set; }
///
/// 评论人ID
///
public long AccountId { get; set; }
///
/// 昵称
///
public string NickName { get; set; }
///
/// 头像
///
public string Avatar { get; set; }
///
/// 楼层
///
public int Index { get; set; }
///
/// 评论内容
///
public string Content { get; set; }
///
/// 回复条数
///
public int ReplyCount { get; set; }
///
/// 点赞数量
///
public int PraiseTotal { get; set; }
///
/// 是否已点赞
///
public bool IsPraise { get; set; }
///
/// Ip地址
///
public string IP { get; set; }
///
/// Ip归属地
///
public string Geolocation { get; set; }
///
/// 评论时间
///
public DateTime CreatedTime { get; set; }
///
/// 回复
///
public PageResult ReplyList { get; set; } = new()
{
PageNo = 0,
PageSize = 5,
Rows = new List(),
Pages = 0,
Total = 0
};
}