1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-09 20:13:18 +00:00

base lock timer off of Stopwatch class

This commit is contained in:
Kyle Spearrin
2017-12-28 21:14:30 -05:00
parent 6027406eef
commit c67250da2d
5 changed files with 17 additions and 83 deletions

View File

@@ -5,8 +5,6 @@ namespace Bit.App.Abstractions
public interface IAppSettingsService
{
bool Locked { get; set; }
string LockTimerId { get; set; }
double LastActivityLockTime { get; set; }
DateTime LastActivity { get; set; }
DateTime LastCacheClear { get; set; }
bool AutofillPersistNotification { get; set; }

View File

@@ -10,6 +10,5 @@ namespace Bit.App.Abstractions
Task<LockType> GetLockTypeAsync(bool forceLock);
Task CheckLockAsync(bool forceLock);
bool TopPageIsLock();
void StartLockTimer();
}
}