Remotely/Shared/Models/RemoteControlDtos/KeyPressDto.cs
2021-08-10 07:03:32 -07:00

16 lines
392 B
C#

using Remotely.Shared.Enums;
using System.Runtime.Serialization;
namespace Remotely.Shared.Models.RemoteControlDtos
{
[DataContract]
public class KeyPressDto : BaseDto
{
[DataMember(Name = "Key")]
public string Key { get; set; }
[DataMember(Name = "DtoType")]
public override BaseDtoType DtoType { get; init; } = BaseDtoType.KeyPress;
}
}