2020-12-20 03:06:43 +02:00
|
|
|
|
using IdentityServer.Domain.Models;
|
|
|
|
|
|
|
|
|
|
namespace IdentityServer.Application.Stores
|
|
|
|
|
{
|
|
|
|
|
public interface ISecurityStore
|
|
|
|
|
{
|
2020-12-24 04:55:45 +02:00
|
|
|
|
void SetToken(Token token, int userId);
|
2020-12-20 03:06:43 +02:00
|
|
|
|
TokenValidation ValidateToken(string token);
|
|
|
|
|
}
|
|
|
|
|
}
|