mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
20 lines
485 B
C#
20 lines
485 B
C#
using Remotely.Shared.Enums;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Remotely.Shared.Models.RemoteControlDtos
|
|
{
|
|
[DataContract]
|
|
public class MouseMoveDto : BaseDto
|
|
{
|
|
|
|
[DataMember(Name = "DtoType")]
|
|
public new BaseDtoType DtoType { get; set; } = BaseDtoType.MouseMove;
|
|
|
|
[DataMember(Name = "PercentX")]
|
|
public double PercentX { get; set; }
|
|
|
|
[DataMember(Name = "PercentY")]
|
|
public double PercentY { get; set; }
|
|
}
|
|
}
|