Newer
Older
using UserMicroservice.Models;
namespace UserMicroservice.Services
{
public interface IAuthService
{
AuthTokenPair AuthenticateUser(User user);
void RevokeRefreshToken(string token);
bool ValidateRefreshToken(string token);