tuitio/IdentityServer.Application/Stores/ITokenStore.cs

11 lines
240 B
C#
Raw Normal View History

2020-12-20 03:06:43 +02:00
using IdentityServer.Domain.Models;
namespace IdentityServer.Application.Stores
{
2021-11-13 17:17:13 +02:00
internal interface ITokenStore
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
}
}