Add application services for profiles and neutrino

This commit is contained in:
Holden
2026-06-19 12:57:31 -05:00
parent 3eebfc9ba2
commit 0b81cb046a
25 changed files with 274 additions and 125 deletions

View File

@@ -0,0 +1,10 @@
using RecNet.Application.Common.Tokens;
using RecNet.Domain.Entities.Profiles;
namespace RecNet.Application.Common.Interfaces;
public interface ITokenService
{
TokenResult GenerateProfileToken(Profile profile);
TokenVerifyResult VerifyToken(string token);
}