using Volo.Abp.Application.Dtos;
using Yi.Framework.Bbs.Application.Contracts.Dtos.BbsUser;
using Yi.Framework.Rbac.Application.Contracts.Dtos.User;
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Comment
{
///
/// 单返回,返回单条评论即可
///
public class CommentGetOutputDto : EntityDto
{
public DateTime? CreateTime { get; set; }
public string Content { get; set; }
public Guid DiscussId { get; set; }
///
/// 用户id联表为用户对象
///
public BbsUserGetOutputDto User { get; set; }
///
/// 根节点的评论id
///
public Guid RootId { get; set; }
///
/// 被回复的CommentId
///
public Guid ParentId { get; set; }
}
}