Files
Yi.Admin/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application.Contracts/Dtos/Comment/CommentCreateInputVo.cs

30 lines
682 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Comment
2023-04-15 22:44:33 +08:00
{
/// <summary>
/// Comment输入创建对象
/// </summary>
public class CommentCreateInputVo
{
/// <summary>
/// 评论id
/// </summary>
2023-12-11 09:55:12 +08:00
public string? Content { get; set; }
2023-04-15 22:44:33 +08:00
/// <summary>
/// 主题id
/// </summary>
2023-12-11 09:55:12 +08:00
public Guid DiscussId { get; set; }
2023-04-15 22:44:33 +08:00
/// <summary>
/// 第一层评论id第一层为0
/// </summary>
2023-12-11 09:55:12 +08:00
public Guid RootId { get; set; }
2023-04-15 22:44:33 +08:00
/// <summary>
/// 被回复的CommentId第一层为0
/// </summary>
2023-12-11 09:55:12 +08:00
public Guid ParentId { get; set; }
2023-04-15 22:44:33 +08:00
}
}