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-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-04-30 21:33:00 +03:00
|
|
|
|
public static string AccessibilityAutofillPasswordFieldKey = "accessibilityAutofillPasswordField";
|
|
|
|
|
public static string AccessibilityAutofillPersistNotificationKey = "accessibilityAutofillPersistNotification";
|
2019-05-11 06:43:35 +03:00
|
|
|
|
public const int SelectFileRequestCode = 42;
|
|
|
|
|
public const int SelectFilePermissionRequestCode = 43;
|
2019-04-03 21:21:54 +03:00
|
|
|
|
}
|
|
|
|
|
}
|