tuitio/IdentityServer.Application/Stores/ISecurityStore.cs

11 lines
243 B
C#
Raw Normal View History

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