2020-12-24 04:55:45 +02:00

11 lines
237 B
C#

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