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

14 lines
376 B
C#

using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
using Yi.Furion.Core.Rbac.Dtos.Role;
namespace Yi.Furion.Application.Rbac.Services
{
/// <summary>
/// Role服务抽象
/// </summary>
public interface IRoleService : ICrudAppService<RoleGetOutputDto, RoleGetListOutputDto, long, RoleGetListInputVo, RoleCreateInputVo, RoleUpdateInputVo>
{
}
}