Skip to content
Snippets Groups Projects
IAuthService.cs 270 B
Newer Older
using UserMicroservice.Models;

namespace UserMicroservice.Services
{
    public interface IAuthService
    {
        AuthTokenPair AuthenticateUser(User user);

        void RevokeRefreshToken(string token);

        bool ValidateRefreshToken(string token);