using Liber_Incantamentum.Application.Authentification.DTOs.Request; using Liber_Incantamentum.Application.Authentification.DTOs.Response; using Liber_Incantamentum.Application.Authentification.Interfaces; using Liber_Incantamentum.Domain.Authentification.Entities; using System.Security.Cryptography; namespace Liber_Incantamentum.Application.Authentification.Services.Generals { public class TokenService : ITokenService { public Task GenerateTokensAsync(User user) { throw new NotImplementedException(); } public Task RefreshTokensAsync(RefreshTokenRequestDto request) { throw new NotImplementedException(); } } }