10 lines
254 B
C#
10 lines
254 B
C#
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);
|
|
} |