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

refactor api models for other cipher types

This commit is contained in:
Kyle Spearrin
2017-09-21 10:52:23 -04:00
parent 12650a0ada
commit c58135bac5
8 changed files with 151 additions and 12 deletions

View File

@ -5,6 +5,7 @@
// Folder is deprecated
Folder = 0,
Login = 1,
SecureNote = 2
SecureNote = 2,
Card = 3
}
}

View File

@ -3,7 +3,7 @@
public enum FieldType : byte
{
Text = 0,
Password = 1,
Hidden = 1,
Boolean = 2
}
}