8 lines
196 B
C#
8 lines
196 B
C#
namespace Application.Services.Jwt;
|
|
|
|
public interface IJwtService
|
|
{
|
|
string GenerateJwtToken(string email);
|
|
bool ValidateJwtToken(string token);
|
|
string? RefreshToken(string token);
|
|
} |