You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
502 B

using DealerSelection.Api.Models;
namespace DealerSelection.Api.Infrastructure.Jwt;
public class JwtRepository : IJwtRepository
{
public Task<bool> Authenticate(AuthValidateModelDto userLogin)
{
throw new NotImplementedException();
}
public Task<string> GenerateToken(AuthModel user)
{
throw new NotImplementedException();
}
public Task<TokenValidProperty> IsTokenExpired(string tokenValue)
{
throw new NotImplementedException();
}
}