Files
modernkeepass/ModernKeePass/Events/PasswordEventArgs.cs
Geoffroy BONNEVILLE 36aa8914fa Handle entities with id
No hierarchy is built anymore
WIP save issues after delete
2020-04-02 19:12:16 +02:00

14 lines
263 B
C#

using System;
namespace ModernKeePass.Events
{
public class PasswordEventArgs: EventArgs
{
public string RootGroupId { get; set; }
public PasswordEventArgs(string groupId)
{
RootGroupId = groupId;
}
}
}