using Yi.Framework.Bbs.Application.Contracts.Dtos.Comment;
using Yi.Framework.Ddd.Application.Contracts;
namespace Yi.Framework.Bbs.Application.Contracts.IServices
{
///
/// Comment服务抽象
///
public interface ICommentService : IYiCrudAppService
{
///
/// 发表评论
///
///
///
///
// [Permission("bbs:comment:add")]
// [Authorize]
Task CreateAsync(CommentCreateInputVo input);
}
}