Files
modernkeepass/ModernKeePass.Application/Database/Models/DatabaseVm.cs
Geoffroy BONNEVILLE 009382ea03 Cleanup code
2020-04-08 15:27:40 +02:00

14 lines
476 B
C#

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; }
}
}