Bitwarden-app-android-iphon.../src/Core/Constants.cs

14 lines
533 B
C#
Raw Normal View History

2019-04-03 20:21:54 +02:00
namespace Bit.Core
{
public static class Constants
{
2019-04-16 13:44:18 +02:00
public const string AndroidAppProtocol = "androidapp://";
public const string iOSAppProtocol = "iosapp://";
2019-04-03 20:21:54 +02:00
public static string LockOptionKey = "lockOption";
2019-04-08 22:04:41 +02:00
public static string PinProtectedKey = "pinProtectedKey";
2019-04-16 13:44:18 +02:00
public static string DefaultUriMatch = "defaultUriMatch";
2019-04-17 22:01:07 +02:00
public static string DisableAutoTotpCopyKey = "disableAutoTotpCopy";
2019-04-18 18:19:17 +02:00
public static string EnvironmentUrlsKey = "environmentUrls";
2019-04-03 20:21:54 +02:00
}
}