11 lines
240 B
C#
11 lines
240 B
C#
|
using IdentityServer.Domain.Models;
|
|||
|
|
|||
|
namespace IdentityServer.Application.Stores
|
|||
|
{
|
|||
|
internal interface ITokenStore
|
|||
|
{
|
|||
|
void SetToken(Token token, int userId);
|
|||
|
TokenCore ValidateAndGetTokenCore(string token);
|
|||
|
}
|
|||
|
}
|