1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-30 15:13:24 +00:00

cleanup old list page

This commit is contained in:
Kyle Spearrin
2017-11-27 14:23:42 -05:00
parent 214f308027
commit 7cff22fb9e
5 changed files with 3 additions and 600 deletions

View File

@@ -166,23 +166,6 @@ namespace Bit.App.Models.Page
public bool Fuzzy { get; set; }
}
public class Folder : List<Cipher>
{
public Folder(Models.Folder folder)
{
Id = folder.Id;
Name = folder.Name?.Decrypt();
}
public Folder(List<Cipher> ciphers)
{
AddRange(ciphers);
}
public string Id { get; set; }
public string Name { get; set; } = AppResources.FolderNone;
}
public class Section<T> : List<T>
{
public Section(List<T> groupItems, string name, bool doUpper = true)