tuitio/IdentityServer.Application/Stores/ISecurityStore.cs

11 lines
243 B
C#

using IdentityServer.Domain.Models;
namespace IdentityServer.Application.Stores
{
internal interface ISecurityStore
{
void SetToken(Token token, int userId);
TokenCore ValidateAndGetTokenCore(string token);
}
}