CodeLiturgy.Dashboard/BlueWest.Data.Application/Crypto/Jwt/ITokenFactory.cs

6 lines
118 B
C#
Raw Normal View History

2022-09-10 00:33:17 +03:00
namespace BlueWest.WebApi.Context.Users;
2022-09-11 01:22:04 +03:00
internal interface ITokenFactory
2022-09-10 00:33:17 +03:00
{
string GenerateToken(int size= 32);
}