mirror of
https://github.com/Govor-team/Govor.git
synced 2026-07-22 04:04:56 +00:00
8 lines
171 B
C#
8 lines
171 B
C#
using Govor.Core.Models.Users;
|
|
|
|
namespace Govor.Application.Interfaces.Authentication;
|
|
|
|
public interface IJwtService
|
|
{
|
|
Task<string> GenerateJwtTokenAsync(User user);
|
|
} |