Files
Govor/Govor.Application/Interfaces/Authentication/IJwtService.cs
T
2025-07-11 21:52:37 +07:00

8 lines
171 B
C#

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