Files
DotNetAngular/src/Domain/Interface/IUserRoleRepository.cs
T
2026-02-19 13:49:01 +01:00

8 lines
231 B
C#

namespace Domain.Interface;
public interface IUserRoleRepository
{
Task<bool> AddRoleAsync(int userId, int roleId);
Task<bool> RemoveRoleAsync(int userId, int roleId);
Task<bool> HasRoleAsync(int userId, int roleId);
}