1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-28 10:54:59 +02:00
bitwarden-mobile/src/Core/Constants.cs

12 lines
387 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-03 20:21:54 +02:00
}
}