mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 16:10:16 -04:00
Handle entities with id
No hierarchy is built anymore WIP save issues after delete
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user