using IdentityServer.Domain.Models;
namespace IdentityServer.Application.Stores
{
public interface ISecurityStore
void SetToken(string token, int userId);
TokenValidation ValidateToken(string token);
}