2020-04-08 15:27:40 +02:00
|
|
|
|
namespace ModernKeePass.Application.Database.Models
|
2020-03-24 13:01:14 +01:00
|
|
|
|
{
|
2020-03-26 12:25:22 +01:00
|
|
|
|
public class DatabaseVm
|
2020-03-24 13:01:14 +01:00
|
|
|
|
{
|
|
|
|
|
public bool IsOpen { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
2020-04-01 19:37:30 +02:00
|
|
|
|
public string RootGroupId { get; set; }
|
|
|
|
|
public string RecycleBinId { get; set; }
|
2020-03-26 12:25:22 +01:00
|
|
|
|
public bool IsRecycleBinEnabled { get; set; }
|
|
|
|
|
public string Compression { get; set; }
|
|
|
|
|
public string CipherId { get; set; }
|
|
|
|
|
public string KeyDerivationId { get; set; }
|
2020-04-14 13:44:07 +02:00
|
|
|
|
public int Size { get; internal set; }
|
|
|
|
|
public bool IsDirty { get; internal set; }
|
2020-05-12 18:43:37 +02:00
|
|
|
|
public int MaxHistoryCount { get; set; }
|
2020-05-13 13:50:33 +02:00
|
|
|
|
public long MaxHistorySize { get; set; }
|
2020-03-24 13:01:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|