using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Input; namespace Tango.RemoteDesktop.Network { public class KeyboardStateRequest { public KeyboardEventType EventType { get; set; } public Key Key { get; set; } public bool IsCtrlDown { get; set; } public bool IsShiftDown { get; set; } public bool IsAltDown { get; set; } } }