Files
TenWholeYears.Server/RecNet.Application/Common/Interfaces/ITokenService.cs

11 lines
268 B
C#

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);
}