11 lines
238 B
C#
11 lines
238 B
C#
|
using IdentityServer.Domain.Models;
|
|||
|
|
|||
|
namespace IdentityServer.Application.Stores
|
|||
|
{
|
|||
|
public interface ISecurityStore
|
|||
|
{
|
|||
|
void SetToken(string token, int userId);
|
|||
|
TokenValidation ValidateToken(string token);
|
|||
|
}
|
|||
|
}
|