Files
Govor/Govor.Core/Services/IJwtService.cs
T
2025-06-18 16:55:19 +07:00

8 lines
130 B
C#

using Govor.Core.Models;
namespace Govor.Core.Services;
public interface IJwtService
{
string GenerateJwtToken(User user);
}