Files
Akari.Prototype/Akari.Prototype.Server/Services/IFingerprintManager.cs
2021-06-04 23:26:22 +02:00

18 lines
395 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace Akari.Prototype.Server.Services
{
public interface IFingerprintManager
{
IEnumerable<KeyValuePair<string, string>> FingerprintsHash { get; }
bool Remove(string name);
void VerifyFingerprint(string name, string token);
}
}