1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

added identity cipher type

This commit is contained in:
Kyle Spearrin
2017-10-06 15:47:31 -04:00
parent e93b72ae71
commit 7e848e5c55
3 changed files with 138 additions and 3 deletions

View File

@ -3,9 +3,10 @@
public enum CipherType : byte
{
// Folder is deprecated
Folder = 0,
//Folder = 0,
Login = 1,
SecureNote = 2,
Card = 3
Card = 3,
Identity = 4
}
}