Handle entities with id

No hierarchy is built anymore
WIP save issues after delete
This commit is contained in:
Geoffroy BONNEVILLE
2020-04-02 19:12:16 +02:00
parent b61a9652d1
commit 36aa8914fa
26 changed files with 213 additions and 96 deletions

View File

@@ -1,15 +1,14 @@
using System;
using ModernKeePass.Application.Group.Models;
namespace ModernKeePass.Events
{
public class PasswordEventArgs: EventArgs
{
public GroupVm RootGroup { get; set; }
public string RootGroupId { get; set; }
public PasswordEventArgs(GroupVm groupVm)
public PasswordEventArgs(string groupId)
{
RootGroup = groupVm;
RootGroupId = groupId;
}
}
}