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 { /// /// Represents the "properties" property of a DM TX device config /// public class DmRmcPropertiesConfig { [JsonProperty("control")] public ControlPropertiesConfig Control { get; set; } [JsonProperty("parentDeviceKey")] public string ParentDeviceKey { get; set; } [JsonProperty("parentOutputNumber")] public uint ParentOutputNumber { get; set; } } }