using Remotely.Shared.Enums; using System; using System.Collections.Generic; using System.Runtime.Serialization; using System.Text; namespace Remotely.Shared.Models.RtcDtos { [DataContract] public class ToggleBlockInputDto : BinaryDtoBase { [DataMember(Name = "ToggleOn")] public bool ToggleOn { get; set; } [DataMember(Name = "DtoType")] public new BinaryDtoType DtoType { get; } = BinaryDtoType.ToggleBlockInput; } }