mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
16 lines
522 B
C#
16 lines
522 B
C#
using ModernKeePass.Application.Group.Models;
|
|
|
|
namespace ModernKeePass.Application.Database.Models
|
|
{
|
|
public class DatabaseVm
|
|
{
|
|
public bool IsOpen { get; set; }
|
|
public string Name { get; set; }
|
|
public GroupVm RootGroup { get; set; }
|
|
public string RecycleBinId { get; set; }
|
|
public bool IsRecycleBinEnabled { get; set; }
|
|
public string Compression { get; set; }
|
|
public string CipherId { get; set; }
|
|
public string KeyDerivationId { get; set; }
|
|
}
|
|
} |