tuitio/IdentityServer.Application/Stores/ITokenStore.cs

11 lines
240 B
C#

using IdentityServer.Domain.Models;
namespace IdentityServer.Application.Stores
{
internal interface ITokenStore
{
void SetToken(Token token, int userId);
TokenCore ValidateAndGetTokenCore(string token);
}
}