mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-04 08:00:16 -04:00
Moved application code to the Application layer
Imported Win10 project Code cleanup WIP - Use common UWP services for Win8.1 and Win10
This commit is contained in:
15
ModernKeePass10/Events/PasswordEventArgs.cs
Normal file
15
ModernKeePass10/Events/PasswordEventArgs.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using ModernKeePass.Domain.Entities;
|
||||
|
||||
namespace ModernKeePass.Events
|
||||
{
|
||||
public class PasswordEventArgs: EventArgs
|
||||
{
|
||||
public GroupEntity RootGroupEntity { get; set; }
|
||||
|
||||
public PasswordEventArgs(GroupEntity groupEntity)
|
||||
{
|
||||
RootGroupEntity = groupEntity;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user