Files
Akari.Prototype/Akari.Prototype.Server/Services/IFingerprintManager.cs
Eveldee 97fe70085e Update IFingerprintManager
Add FingerprintsHash to get registered fingerprints
2021-06-04 20:22:04 +02:00

16 lines
360 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; }
void VerifyFingerprint(string name, string token);
}
}