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:
@ -1,6 +1,6 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum CipherType : short
|
||||
public enum CipherType : byte
|
||||
{
|
||||
Folder = 0,
|
||||
Login = 1
|
||||
|
@ -1,6 +1,6 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum DeviceType : short
|
||||
public enum DeviceType : byte
|
||||
{
|
||||
Android = 0,
|
||||
iOS = 1
|
||||
|
8
src/Core/Enums/GlobalEquivalentDomainsType.cs
Normal file
8
src/Core/Enums/GlobalEquivalentDomainsType.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum GlobalEquivalentDomainsType : byte
|
||||
{
|
||||
Google = 0,
|
||||
Apple = 1
|
||||
}
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum PushType : short
|
||||
public enum PushType : byte
|
||||
{
|
||||
SyncCipherUpdate = 0,
|
||||
SyncCipherCreate = 1,
|
||||
|
@ -1,6 +1,6 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum TwoFactorProvider
|
||||
public enum TwoFactorProviderType : byte
|
||||
{
|
||||
Authenticator = 0
|
||||
}
|
Reference in New Issue
Block a user