mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-03 16:19:46 +00:00
13 lines
387 B
C#
13 lines
387 B
C#
using ShoppingAssistantApi.Application.Models.Identity;
|
|
using System.Security.Claims;
|
|
|
|
namespace ShoppingAssistantApi.Application.IServices.Identity;
|
|
|
|
public interface ITokensService
|
|
{
|
|
string GenerateAccessToken(IEnumerable<Claim> claims);
|
|
|
|
string GenerateRefreshToken();
|
|
|
|
Task<TokensModel> RefreshUserAsync(TokensModel tokensModel, CancellationToken cancellationToken);
|
|
} |