1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-20 01:13:30 +00:00
Files
mobile/src/App/Abstractions/Services/ILockService.cs

9 lines
151 B
C#

using Bit.App.Enums;
namespace Bit.App.Abstractions
{
public interface ILockService
{
LockType GetLockType(bool forceLock);
}
}