mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
20 lines
528 B
C#
20 lines
528 B
C#
using ModernKeePass.ViewModels;
|
|
using ModernKeePassLib;
|
|
using ModernKeePassLib.Keys;
|
|
|
|
namespace ModernKeePass.Interfaces
|
|
{
|
|
public interface IDatabase
|
|
{
|
|
bool RecycleBinEnabled { get; set; }
|
|
int Status { get; set; }
|
|
GroupVm RootGroup { get; set; }
|
|
GroupVm RecycleBin { get; set; }
|
|
|
|
void Open(CompositeKey key, bool createNew);
|
|
void UpdateCompositeKey(CompositeKey key);
|
|
bool Save();
|
|
void CreateRecycleBin();
|
|
void AddDeletedItem(PwUuid id);
|
|
}
|
|
} |