mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 13:13:28 +00:00
15 lines
316 B
C#
15 lines
316 B
C#
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; }
|
|
}
|
|
}
|