mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 18:06:39 +00:00
11 lines
256 B
C#
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;
|
|
}
|