8 lines
208 B
C#
8 lines
208 B
C#
namespace Kreta.BusinessLogic.Interfaces
|
|
{
|
|
public interface ITokenServiceHelper
|
|
{
|
|
(string, int) GetPublicTokenWithExpiresIn();
|
|
(string, int) GetPrivateTokenWithExpiresIn();
|
|
}
|
|
}
|