Files
TenWholeYears.Server/RecNet.Application/Common/Interfaces/ITokenService.cs
2026-06-19 15:12:04 -05:00

11 lines
259 B
C#

using RecNet.Application.Common.Tokens;
using RecNet.Domain.Profiles;
namespace RecNet.Application.Common.Interfaces;
public interface ITokenService
{
TokenResult GenerateProfileToken(Profile profile);
TokenVerifyResult VerifyToken(string token);
}