Add JWT auth, token service & Neutrino endpoint
This commit is contained in:
9
RecNet.Domain/Services/Tokens/ITokenService.cs
Normal file
9
RecNet.Domain/Services/Tokens/ITokenService.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using RecNet.Domain.Entities.Profiles;
|
||||
|
||||
namespace RecNet.Domain.Services.Tokens;
|
||||
|
||||
public interface ITokenService
|
||||
{
|
||||
TokenResult GenerateProfileToken(Profile profile);
|
||||
TokenVerifyResult VerifyToken(string token);
|
||||
}
|
||||
Reference in New Issue
Block a user