mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
Handle entities with id
No hierarchy is built anymore WIP save issues after delete
This commit is contained in:
@@ -30,8 +30,10 @@ namespace ModernKeePass.Application.Common.Interfaces
|
||||
Task AddGroup(string parentGroupId, string groupId);
|
||||
void UpdateEntry(string entryId, string fieldName, object fieldValue);
|
||||
void UpdateGroup(string groupId);
|
||||
Task RemoveEntry(string parentGroupId, string entryId, bool isToBeDeleted);
|
||||
Task RemoveGroup(string parentGroupId, string groupId, bool isToBeDeleted);
|
||||
Task RemoveEntry(string parentGroupId, string entryId);
|
||||
Task RemoveGroup(string parentGroupId, string groupId);
|
||||
Task DeleteEntry(string parentGroupId, string entryId, string recycleBinName);
|
||||
Task DeleteGroup(string parentGroupId, string groupId, string recycleBinName);
|
||||
EntryEntity CreateEntry(string parentGroupId);
|
||||
GroupEntity CreateGroup(string parentGroupId, string nameId, bool isRecycleBin = false);
|
||||
void SortEntries(string groupId);
|
||||
|
Reference in New Issue
Block a user