1
0
mirror of synced 2025-02-23 13:49:35 +01:00
2024-11-19 01:32:03 +08:00

6 lines
133 B
C#

namespace Application.Interfaces;
public interface IJwtTokenService
{
public string GenerateToken(uint baid, bool isAdmin);
}