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:
14
src/App/Models/Page/SettingsFolderPageModel.cs
Normal file
14
src/App/Models/Page/SettingsFolderPageModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user