namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Comment { /// /// Comment输入创建对象 /// public class CommentCreateInputVo { /// /// 评论id /// public string? Content { get; set; } /// /// 主题id /// public Guid DiscussId { get; set; } /// /// 第一层评论id,第一层为0 /// public Guid RootId { get; set; } /// /// 被回复的CommentId,第一层为0 /// public Guid ParentId { get; set; } } }