2019-04-03 21:21:54 +03:00
|
|
|
|
namespace Bit.Core
|
|
|
|
|
{
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
2019-04-16 14:44:18 +03:00
|
|
|
|
public const string AndroidAppProtocol = "androidapp://";
|
|
|
|
|
public const string iOSAppProtocol = "iosapp://";
|
2019-04-03 21:21:54 +03:00
|
|
|
|
public static string LockOptionKey = "lockOption";
|
2019-05-15 21:22:28 +03:00
|
|
|
|
public static string LastActiveKey = "lastActive";
|
2019-05-17 00:30:07 +03:00
|
|
|
|
public static string FingerprintUnlockKey = "fingerprintUnlock";
|
2019-05-15 21:22:28 +03:00
|
|
|
|
public static string ProtectedPin = "protectedPin";
|
2019-04-08 23:04:41 +03:00
|
|
|
|
public static string PinProtectedKey = "pinProtectedKey";
|
2019-04-16 14:44:18 +03:00
|
|
|
|
public static string DefaultUriMatch = "defaultUriMatch";
|
2019-04-17 23:01:07 +03:00
|
|
|
|
public static string DisableAutoTotpCopyKey = "disableAutoTotpCopy";
|
2019-04-18 19:19:17 +03:00
|
|
|
|
public static string EnvironmentUrlsKey = "environmentUrls";
|
2019-04-29 23:09:27 +03:00
|
|
|
|
public static string LastFileCacheClearKey = "lastFileCacheClear";
|
2019-06-03 17:45:27 +03:00
|
|
|
|
public static string AutofillDisableSavePromptKey = "autofillDisableSavePrompt";
|
|
|
|
|
public static string AutofillBlacklistedUrisKey = "autofillBlacklistedUris";
|
2019-05-17 21:34:14 +03:00
|
|
|
|
public static string DisableFaviconKey = "disableFavicon";
|
2019-05-28 19:01:55 +03:00
|
|
|
|
public static string PushRegisteredTokenKey = "pushRegisteredToken";
|
|
|
|
|
public static string PushCurrentTokenKey = "pushCurrentToken";
|
|
|
|
|
public static string PushLastRegistrationDateKey = "pushLastRegistrationDate";
|
|
|
|
|
public static string PushInitialPromptShownKey = "pushInitialPromptShown";
|
2019-05-29 21:11:15 +03:00
|
|
|
|
public static string ThemeKey = "theme";
|
|
|
|
|
public static string ClearClipboardKey = "clearClipboard";
|
2019-05-30 21:13:02 +03:00
|
|
|
|
public static string LastBuildKey = "lastBuild";
|
2019-06-01 07:42:26 +03:00
|
|
|
|
public static string OldUserIdKey = "userId";
|
2019-06-04 06:00:48 +03:00
|
|
|
|
public static string AddSitePromptShownKey = "addSitePromptShown";
|
2019-07-07 05:49:17 +03:00
|
|
|
|
public static string ClearCiphersCacheKey = "clearCiphersCache";
|
2019-06-04 17:51:10 +03:00
|
|
|
|
public static string MigratedFromV1 = "migratedFromV1";
|
|
|
|
|
public static string MigratedFromV1AutofillPromptShown = "migratedV1AutofillPromptShown";
|
2019-06-05 06:39:58 +03:00
|
|
|
|
public static string TriedV1Resync = "triedV1Resync";
|
2019-07-11 16:30:25 +03:00
|
|
|
|
public static string EventCollectionKey = "eventCollection";
|
2019-07-31 23:50:16 +03:00
|
|
|
|
public static string PreviousPageKey = "previousPage";
|
2019-05-11 06:43:35 +03:00
|
|
|
|
public const int SelectFileRequestCode = 42;
|
|
|
|
|
public const int SelectFilePermissionRequestCode = 43;
|
2020-02-15 00:10:58 +03:00
|
|
|
|
public const int SaveFileRequestCode = 44;
|
2019-04-03 21:21:54 +03:00
|
|
|
|
}
|
|
|
|
|
}
|