Files
annotations/Azaion.Common/Events/KeyEvent.cs
T
Alex Bezdieniezhnykh ae2c62350a remove fix, todo: test
2025-01-03 18:32:56 +02:00

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;
}