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