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