Add Application configuration #11
10
Security/Common/Interfaces/IRevokedToken.cs
Normal file
10
Security/Common/Interfaces/IRevokedToken.cs
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
using System;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Mirea.Api.Security.Common.Interfaces;
|
||||||
|
|
||||||
|
public interface IRevokedToken
|
||||||
|
{
|
||||||
|
Task AddTokenToRevokedAsync(string token, DateTimeOffset expiresIn);
|
||||||
|
Task<bool> IsTokenRevokedAsync(string token);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user