2016-05-22 05:50:15 +03:00
|
|
|
|
namespace Bit.App
|
|
|
|
|
{
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
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-05-22 05:50:15 +03:00
|
|
|
|
public const string SettingLastBackgroundedDate = "lastBackgroundedDate";
|
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-05-22 05:50:15 +03:00
|
|
|
|
}
|
|
|
|
|
}
|