mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-21 16:34:48 +00:00
27 lines
677 B
C#
27 lines
677 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Crestron.SimplSharpPro.DM;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Converters;
|
|
using PepperDash.Core;
|
|
|
|
namespace PepperDash.Essentials.DM.Config
|
|
{
|
|
/// <summary>
|
|
/// Represents the "properties" property of a DM TX device config
|
|
/// </summary>
|
|
public class DmTxPropertiesConfig
|
|
{
|
|
[JsonProperty("control")]
|
|
public ControlPropertiesConfig Control { get; set; }
|
|
|
|
[JsonProperty("parentDeviceKey")]
|
|
public string ParentDeviceKey { get; set; }
|
|
|
|
[JsonProperty("parentInputNumber")]
|
|
public uint ParentInputNumber { get; set; }
|
|
|
|
[JsonProperty("autoSwitching")]
|
|
public bool AutoSwitching { get; set; }
|
|
}
|
|
} |