jwt v1.0
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
using System.Security.Claims;
|
||||
|
||||
namespace Application.Services.Jwt;
|
||||
|
||||
public interface IJwtService
|
||||
{
|
||||
string GenerateJwtToken(string email);
|
||||
bool ValidateJwtToken(string token);
|
||||
string? RefreshToken(string token);
|
||||
}
|
||||
Reference in New Issue
Block a user