Files
Yi.Framework/Yi.Furion.Net6/Yi.Furion.Application/Bbs/Services/ICommentService.cs
2023-04-15 22:44:33 +08:00

14 lines
398 B
C#

using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
using Yi.Furion.Core.Bbs.Dtos.Comment;
namespace Yi.Furion.Application.Bbs.Services
{
/// <summary>
/// Comment服务抽象
/// </summary>
public interface ICommentService : ICrudAppService<CommentGetOutputDto, CommentGetListOutputDto, long, CommentGetListInputVo, CommentCreateInputVo, CommentUpdateInputVo>
{
}
}