Files
Yi.Admin/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IAccountService.cs

12 lines
315 B
C#
Raw Normal View History

2024-01-19 17:45:11 +08:00
using Yi.Framework.Rbac.Application.Contracts.Dtos.Account;
using Yi.Framework.Rbac.Domain.Shared.Dtos;
2024-01-17 16:31:01 +08:00
namespace Yi.Framework.Rbac.Application.Contracts.IServices
2023-12-11 09:55:12 +08:00
{
public interface IAccountService
{
2024-01-17 16:31:01 +08:00
Task<UserRoleMenuDto> Get();
2024-01-19 17:45:11 +08:00
Task<object> PostLoginAsync(LoginInputVo input);
2023-12-11 09:55:12 +08:00
}
}