mirror of
https://dev.azure.com/tstanciu94/Tuitio/_git/Tuitio
synced 2025-03-28 23:52:20 +02:00
11 lines
276 B
C#
11 lines
276 B
C#
using IdentityServer.Domain.Entities;
|
|
using IdentityServer.Domain.Models;
|
|
|
|
namespace IdentityServer.Application.Services
|
|
{
|
|
internal interface ITokenService
|
|
{
|
|
string GenerateTokenRaw(AppUser user);
|
|
TokenCore ExtractTokenCore(string tokenRaw);
|
|
}
|
|
} |