Abstractions and dtos

This commit is contained in:
Veljko Tosic
2026-02-14 18:45:59 +01:00
parent c2b085ec28
commit 068739c616
7 changed files with 27 additions and 4 deletions

View File

@@ -5,5 +5,6 @@ namespace AipsCore.Application.Abstract.UserContext;
public interface ITokenProvider
{
string Generate(User user, IList<UserRole> roles);
string GenerateAccessToken(User user, IList<UserRole> roles);
string GenerateRefreshToken();
}