using Crestron.SimplSharpPro; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PepperDash.Essentials.Core.Config { /// /// Represents a AudioControlPointListItem /// public class AudioControlPointListItem { [JsonProperty("levelControls")] public Dictionary LevelControls { get; set; } = new Dictionary(); [JsonProperty("presets")] public Dictionary Presets { get; set; } = new Dictionary(); } }