From f053cd508e1205d4f1191263ce9fb840c8d7d6fa Mon Sep 17 00:00:00 2001 From: Eveldee Date: Fri, 4 Jun 2021 18:34:24 +0200 Subject: [PATCH] Update IAuthManager --- Akari.Prototype.Server/Services/IAuthManager.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Akari.Prototype.Server/Services/IAuthManager.cs b/Akari.Prototype.Server/Services/IAuthManager.cs index aa1ab0b..5facc70 100644 --- a/Akari.Prototype.Server/Services/IAuthManager.cs +++ b/Akari.Prototype.Server/Services/IAuthManager.cs @@ -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>> Pairs { get; } + void Auth(string name, string token); } }