using LiveForum.Code.Base; using LiveForum.Model.Dto.PostComments; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LiveForum.IService.Posts { /// /// 帖子评论服务接口 /// public interface IPostCommentsService { /// /// 获取评论列表 /// /// 请求参数 /// Task> GetPostComments(GetPostCommentsReq request); /// /// 获取评论回复列表 /// /// 请求参数 /// Task> GetCommentsReplies(GetCommentsRepliesReq request); /// /// 发表评论 /// /// 请求参数 /// Task> PublishPostComments(PublishPostCommentsReq request); /// /// 删除评论 /// /// 请求参数 /// Task DeletePostComments(DeletePostCommentsReq request); /// /// 点赞/取消点赞评论 /// /// 请求参数 /// Task> LikeComment(LikeCommentReq request); } }