Remotely/Shared/Models/RemoteControlDtos/TapDto.cs
2021-07-29 07:56:44 -07:00

20 lines
468 B
C#

using Remotely.Shared.Enums;
using System.Runtime.Serialization;
namespace Remotely.Shared.Models.RemoteControlDtos
{
[DataContract]
public class TapDto : BaseDto
{
[DataMember(Name = "DtoType")]
public new BaseDtoType DtoType { get; } = BaseDtoType.Tap;
[DataMember(Name = "PercentX")]
public double PercentX { get; set; }
[DataMember(Name = "PercentY")]
public double PercentY { get; set; }
}
}