1 2 3 4 5 6 7 8 9
using Api.Models; namespace Api.Interfaces { public interface IJwtService { Task<string> GenToken(User user); } }