mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
13 lines
509 B
C#
13 lines
509 B
C#
namespace Bit.App
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string SettingFingerprintUnlockOn = "fingerprintUnlockOn";
|
|
public const string SettingPinUnlockOn = "pinUnlockOn";
|
|
public const string SettingLockSeconds = "lockSeconds";
|
|
public const string SettingLastBackgroundedDate = "lastBackgroundedDate";
|
|
|
|
public const string PushPromptShown = "initialPushPromptShown";
|
|
public const string PushLastRegistration = "lastPushRegistration";
|
|
}
|
|
}
|