using System.Collections.Generic; using Newtonsoft.Json; using PepperDash.Core; using PepperDash.Essentials.DM.Config; namespace PepperDash_Essentials_DM.Config { public class HdPsXxxPropertiesConfig { [JsonProperty("control")] public ControlPropertiesConfig Control { get; set; } [JsonProperty("inputs")] //public Dictionary Inputs { get; set; } public Dictionary Inputs { get; set; } [JsonProperty("outputs")] //public Dictionary Outputs { get; set; } public Dictionary Outputs { get; set; } public HdPsXxxPropertiesConfig() { //Inputs = new Dictionary(); //Outputs = new Dictionary(); Inputs = new Dictionary(); Outputs = new Dictionary(); } } }