Files
modernkeepass/ModernKeePass.Application/Database/Models/DatabaseVm.cs
Geoffroy BONNEVILLE b61a9652d1 WIP change to ids
2020-04-01 19:37:30 +02:00

16 lines
523 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 string RootGroupId { 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; }
}
}