Files
Govor/Govor.Application/Interfaces/Authentication/IJwtService.cs
T

8 lines
166 B
C#

using Govor.Core.Models;
namespace Govor.API.Services.Authentication.Interfaces;
public interface IJwtService
{
Task<string> GenerateJwtTokenAsync(User user);
}