using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Input; namespace Tango.RemoteDesktop.Network { public class MouseStateRequest { public MouseButton Button { get; set; } public MouseEventType EventType { get; set; } public Point Location { get; set; } public int ScrollDelta { get; set; } } }