using Bit.Core.Services; namespace Bit.Core.Abstractions { public interface IUserPinService { Task IsPinLockEnabledAsync(); Task SetupPinAsync(string pin, bool requireMasterPasswordOnRestart); Task VerifyPinAsync(string inputPin); Task VerifyPinAsync(string inputPin, string email, KdfConfig kdfConfig, PinLockType pinLockType); } }