mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
14 lines
608 B
C#
14 lines
608 B
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 PinProtectedKey = "pinProtectedKey";
|
|
public static string DefaultUriMatch = "defaultUriMatch";
|
|
public static string DisableAutoTotpCopyKey = "disableAutoTotpCopy";
|
|
public static string EnvironmentUrlsKey = "environmentUrls";
|
|
public static string LastFileCacheClearKey = "lastFileCacheClear";
|
|
}
|
|
}
|