tuitio/IdentityServer.Application/Services/ITokenService.cs

11 lines
276 B
C#
Raw Normal View History

using IdentityServer.Domain.Entities;
using IdentityServer.Domain.Models;
namespace IdentityServer.Application.Services
{
internal interface ITokenService
{
string GenerateTokenRaw(AppUser user);
TokenCore ExtractTokenCore(string tokenRaw);
}
}