tuitio/IdentityServer.Application/Stores/ISecurityStore.cs

11 lines
238 B
C#
Raw Normal View History

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