mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
14 lines
263 B
C#
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;
|
|
}
|
|
}
|
|
} |