mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
20 lines
1 KiB
C#
20 lines
1 KiB
C#
namespace Bit.Core
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string AndroidAppProtocol = "androidapp://";
|
|
public const string iOSAppProtocol = "iosapp://";
|
|
public static string LockOptionKey = "lockOption";
|
|
public static string LastActiveKey = "lastActive";
|
|
public static string ProtectedPin = "protectedPin";
|
|
public static string PinProtectedKey = "pinProtectedKey";
|
|
public static string DefaultUriMatch = "defaultUriMatch";
|
|
public static string DisableAutoTotpCopyKey = "disableAutoTotpCopy";
|
|
public static string EnvironmentUrlsKey = "environmentUrls";
|
|
public static string LastFileCacheClearKey = "lastFileCacheClear";
|
|
public static string AccessibilityAutofillPasswordFieldKey = "accessibilityAutofillPasswordField";
|
|
public static string AccessibilityAutofillPersistNotificationKey = "accessibilityAutofillPersistNotification";
|
|
public const int SelectFileRequestCode = 42;
|
|
public const int SelectFilePermissionRequestCode = 43;
|
|
}
|
|
}
|