Remotely/Shared/Models/RtcDtos/ToggleBlockInputDto.cs
2020-04-15 12:59:18 -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.RtcDtos
{
[DataContract]
public class ToggleBlockInputDto : BinaryDtoBase
{
[DataMember(Name = "ToggleOn")]
public bool ToggleOn { get; set; }
[DataMember(Name = "DtoType")]
public new BinaryDtoType DtoType { get; } = BinaryDtoType.ToggleBlockInput;
}
}