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

19 lines
472 B
C#

using Remotely.Shared.Enums;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
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;
}
}