2016-05-22 05:50:15 +03:00
|
|
|
|
namespace Bit.App
|
|
|
|
|
{
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
2017-01-31 03:26:39 +03:00
|
|
|
|
public const string AndroidAppProtocol = "androidapp://";
|
|
|
|
|
|
2016-07-02 09:01:47 +03:00
|
|
|
|
public const string SettingFingerprintUnlockOn = "setting:fingerprintUnlockOn";
|
|
|
|
|
public const string SettingPinUnlockOn = "setting:pinUnlockOn";
|
|
|
|
|
public const string SettingLockSeconds = "setting:lockSeconds";
|
2016-06-28 07:55:53 +03:00
|
|
|
|
|
2016-07-02 09:01:47 +03:00
|
|
|
|
public const string PasswordGeneratorLength = "pwGenerator:length";
|
|
|
|
|
public const string PasswordGeneratorUppercase = "pwGenerator:uppercase";
|
|
|
|
|
public const string PasswordGeneratorLowercase = "pwGenerator:lowercase";
|
|
|
|
|
public const string PasswordGeneratorNumbers = "pwGenerator:numbers";
|
|
|
|
|
public const string PasswordGeneratorMinNumbers = "pwGenerator:minNumbers";
|
|
|
|
|
public const string PasswordGeneratorSpecial = "pwGenerator:special";
|
|
|
|
|
public const string PasswordGeneratorMinSpecial = "pwGenerator:minSpecial";
|
|
|
|
|
public const string PasswordGeneratorAmbiguous = "pwGenerator:ambiguous";
|
|
|
|
|
|
|
|
|
|
public const string PushInitialPromptShown = "push:initialPromptShown";
|
|
|
|
|
public const string PushLastRegistrationDate = "push:lastRegistrationDate";
|
2016-07-02 22:20:06 +03:00
|
|
|
|
|
|
|
|
|
public const string ExtensionStarted = "extension:started";
|
|
|
|
|
public const string ExtensionActivated = "extension:activated";
|
2016-08-06 06:58:31 +03:00
|
|
|
|
|
|
|
|
|
public const string FirstVaultLoad = "other:firstVaultLoad";
|
2016-08-09 02:00:36 +03:00
|
|
|
|
public const string LastActivityDate = "other:lastActivityDate";
|
2016-08-06 06:58:31 +03:00
|
|
|
|
public const string Locked = "other:locked";
|
|
|
|
|
public const string LastLoginEmail = "other:lastLoginEmail";
|
|
|
|
|
public const string LastSync = "other:lastSync";
|
2016-05-22 05:50:15 +03:00
|
|
|
|
}
|
|
|
|
|
}
|