Files
6d486f49 1d6207fbfe API Test
2026-08-17 00:45:08 -04:00

7 lines
144 B
C#

namespace API.Services;
public interface ITokenService
{
string GenerateToken(string username);
string? ValidateToken(string? token);
}