aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.RemoteDesktop/Network/KeyboardStateRequest.cs
blob: 27ae49f64365c212a205a7f87451022296a34719 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
    }
}