using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace Tango.RemoteDesktop.Network
{
public class TouchStateRequest
{
public TouchEventType EventType { get; set; }
public Point Location { get; set; }
public int MoveDeltaX { get; set; }
public int MoveDeltaY { get; set; }
}
}