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

16 lines
405 B
C#

using Remotely.Shared.Enums;
using System.Runtime.Serialization;
namespace Remotely.Shared.Models.RemoteControlDtos
{
[DataContract]
public class ToggleBlockInputDto : BaseDto
{
[DataMember(Name = "ToggleOn")]
public bool ToggleOn { get; set; }
[DataMember(Name = "DtoType")]
public new BaseDtoType DtoType { get; } = BaseDtoType.ToggleBlockInput;
}
}