mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:06:30 +00:00
13 lines
360 B
C#
13 lines
360 B
C#
using System.Windows.Input;
|
|
using Azaion.Common.DTO;
|
|
using MediatR;
|
|
|
|
namespace Azaion.Common.Events;
|
|
|
|
public class KeyEvent(object sender, KeyEventArgs args, WindowEnum windowEnum) : INotification
|
|
{
|
|
public object Sender { get; set; } = sender;
|
|
public KeyEventArgs Args { get; set; } = args;
|
|
public WindowEnum WindowEnum { get; } = windowEnum;
|
|
}
|