kreta/Kreta.BusinessLogic/Interfaces/ITokenServiceHelper.cs
2024-03-13 00:33:46 +01:00

8 lines
208 B
C#

namespace Kreta.BusinessLogic.Interfaces
{
public interface ITokenServiceHelper
{
(string, int) GetPublicTokenWithExpiresIn();
(string, int) GetPrivateTokenWithExpiresIn();
}
}