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