1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 02:03:46 +00:00

additional identity fields

This commit is contained in:
Kyle Spearrin
2017-10-09 11:23:20 -04:00
parent c7e7734dfc
commit b0fd99b218
4 changed files with 23 additions and 2 deletions

View File

@@ -207,6 +207,15 @@ namespace Bit.Core.Models.Api
[EncryptedString]
[StringLength(1000)]
public string SSN { get; set; }
[EncryptedString]
[StringLength(1000)]
public string Username { get; set; }
[EncryptedString]
[StringLength(1000)]
public string PassportNumber { get; set; }
[EncryptedString]
[StringLength(1000)]
public string LicenseNumber { get; set; }
}
public class SecureNoteType