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> FingerprintsHash { get; } bool Remove(string name); void VerifyFingerprint(string name, string token); } }