Update IAuthManager

This commit is contained in:
2021-06-04 18:34:24 +02:00
parent d02d738ba4
commit f053cd508e

View File

@@ -1,12 +1,16 @@
using System;
using Akari.Prototype.Server.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Threading.Tasks;
namespace Akari.Prototype.Server.Services
{
public interface IAuthManager
{
IEnumerable<KeyValuePair<string, TimedEntry<AesGcm>>> Pairs { get; }
void Auth(string name, string token);
}
}