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