1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-04 01:22:50 -05:00

stub out fields and secure note models

This commit is contained in:
Kyle Spearrin
2017-09-13 16:54:23 -04:00
parent d2405bc1cc
commit 27216efd1f
9 changed files with 102 additions and 38 deletions

View File

@ -4,6 +4,7 @@
{
// Folder is deprecated
Folder = 0,
Login = 1
Login = 1,
SecureNote = 2
}
}

View File

@ -0,0 +1,9 @@
namespace Bit.Core.Enums
{
public enum FieldType : byte
{
Text = 0,
Password = 1,
Boolean = 2
}
}

View File

@ -0,0 +1,7 @@
namespace Bit.Core.Enums
{
public enum SecureNoteType : byte
{
Generic = 0
}
}