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