2025-09-06 19:51:07 +02:00

22 lines
741 B
C#

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<AuthResponseDto> GenerateTokensAsync(User user)
{
throw new NotImplementedException();
}
public Task<AuthResponseDto?> RefreshTokensAsync(RefreshTokenRequestDto request)
{
throw new NotImplementedException();
}
}
}