mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 23:50:18 -04:00
Create a shared project with all Win App common files (8.1 and 10)
Finally use the dependency injected Resource Service
This commit is contained in:
14
WinAppCommon/Events/PasswordEventArgs.cs
Normal file
14
WinAppCommon/Events/PasswordEventArgs.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace ModernKeePass.Events
|
||||
{
|
||||
public class PasswordEventArgs: EventArgs
|
||||
{
|
||||
public string RootGroupId { get; set; }
|
||||
|
||||
public PasswordEventArgs(string groupId)
|
||||
{
|
||||
RootGroupId = groupId;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user