using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using Newtonsoft.Json; using PepperDash.Core; namespace PepperDash.Essentials.DM.Config { /// /// Defines the properties section of HdMdNxM boxes /// public class HdMdNxM4kEPropertiesConfig { [JsonProperty("control")] public ControlPropertiesConfig Control { get; set; } [JsonProperty("inputs")] public Dictionary Inputs { get; set; } } public class HdMdNxM4kEBridgeablePropertiesConfig { [JsonProperty("control")] public ControlPropertiesConfig Control { get; set; } [JsonProperty("inputs")] public Dictionary Inputs { get; set; } [JsonProperty("outputs")] public Dictionary Outputs { get; set; } } }