1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.UI/Events/MainWindowKeyEvent.cs

18 lines
436 B
C#

using System.Windows.Input;
namespace Artemis.UI.Events
{
public class MainWindowKeyEvent
{
public MainWindowKeyEvent(object sender, bool keyDown, KeyEventArgs eventArgs)
{
Sender = sender;
KeyDown = keyDown;
EventArgs = eventArgs;
}
public object Sender { get; }
public bool KeyDown { get; }
public KeyEventArgs EventArgs { get; }
}
}