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