using System.Threading.Tasks; namespace Bit.Core.Abstractions { public interface IBiometricService { Task SetupBiometricAsync(string bioIntegrityKey = null); Task ValidateIntegrityAsync(string bioIntegrityKey = null); } }