Files
FACULTATE-HEALTHCARE_MANAGER/backend/Application/Services/Jwt/IJwtService.cs
T
2024-04-08 13:37:58 +03:00

10 lines
227 B
C#

using System.Security.Claims;
namespace Application.Services.Jwt;
public interface IJwtService
{
string GenerateJwtToken(string email);
bool ValidateJwtToken(string token);
string? RefreshToken(string token);
}