1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-12 13:19:01 -05:00

equivalent domains APIs and data models

This commit is contained in:
Kyle Spearrin
2017-01-09 22:20:34 -05:00
parent 90607f6d93
commit 7abde8c771
18 changed files with 138 additions and 29 deletions

View File

@ -1,6 +1,6 @@
namespace Bit.Core.Enums
{
public enum CipherType : short
public enum CipherType : byte
{
Folder = 0,
Login = 1

View File

@ -1,6 +1,6 @@
namespace Bit.Core.Enums
{
public enum DeviceType : short
public enum DeviceType : byte
{
Android = 0,
iOS = 1

View File

@ -0,0 +1,8 @@
namespace Bit.Core.Enums
{
public enum GlobalEquivalentDomainsType : byte
{
Google = 0,
Apple = 1
}
}

View File

@ -1,6 +1,6 @@
namespace Bit.Core.Enums
{
public enum PushType : short
public enum PushType : byte
{
SyncCipherUpdate = 0,
SyncCipherCreate = 1,

View File

@ -1,6 +1,6 @@
namespace Bit.Core.Enums
{
public enum TwoFactorProvider
public enum TwoFactorProviderType : byte
{
Authenticator = 0
}