1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-26 05:03:39 +00:00

Settings options added to table. Folder add/edit/list pages for settings.

This commit is contained in:
Kyle Spearrin
2016-05-17 23:09:20 -04:00
parent 72c807a5b2
commit 08875f7c5a
10 changed files with 420 additions and 116 deletions

View File

@@ -0,0 +1,14 @@
namespace Bit.App.Models.Page
{
public class SettingsFolderPageModel
{
public SettingsFolderPageModel(Folder folder)
{
Id = folder.Id;
Name = folder.Name?.Decrypt();
}
public string Id { get; set; }
public string Name { get; set; }
}
}