Files
annotations/Azaion.Annotator/Azaion.Annotator/DTO/KeyEvent.cs
T
Oleksandr Bezdieniezhnykh 3dc461e5df add Annotator
2024-05-14 22:12:11 +03:00

11 lines
256 B
C#

using System.Windows.Input;
using MediatR;
namespace Azaion.Annotator.DTO;
public class KeyEvent(object sender, KeyEventArgs args) : INotification
{
public object Sender { get; set; } = sender;
public KeyEventArgs Args { get; set; } = args;
}