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; } }