1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 23:03:23 +00:00

view updates

This commit is contained in:
Kyle Spearrin
2019-04-16 07:43:56 -04:00
parent 40598721f1
commit 7d6ec46ebe
5 changed files with 185 additions and 12 deletions

View File

@@ -41,7 +41,7 @@ namespace Bit.Core.Models.View
public List<AttachmentView> Attachments { get; set; }
public List<FieldView> Fields { get; set; }
public List<PasswordHistoryView> PasswordHistory { get; set; }
public List<string> CollectionIds { get; set; }
public HashSet<string> CollectionIds { get; set; }
public DateTime RevisionDate { get; set; }
@@ -56,10 +56,9 @@ namespace Bit.Core.Models.View
case CipherType.SecureNote:
return SecureNote.SubTitle;
case CipherType.Card:
// TODO
// return Card.SubTitle;
return Card.SubTitle;
case CipherType.Identity:
// return Identity.SubTitle;
return Identity.SubTitle;
default:
break;
}