Files
forkmessager/backend/src/Contracts/Auth/Application/Abstractions/IJwtTokenProvider.cs
Халимов Рустам 89b2eeea6c Структура
2026-03-30 00:09:12 +03:00

10 lines
330 B
C#

namespace Knot.Contracts.Auth.Application.Abstractions;
public interface IJwtTokenProvider
{
string GenerateAccessToken(Guid userId, string username);
string GenerateRefreshToken();
string Generate(Guid userId, string username, string displayName, string? avatar);
string Generate(Domain.UserContract user);
}