fix: Changes LevelControlLists to AudioControlPointLists and modified IHasDspPresets

This commit is contained in:
Neil Dorin
2024-05-21 16:49:13 -06:00
parent d8d2c5b340
commit 2e61d8d709
10 changed files with 130 additions and 53 deletions

View File

@@ -0,0 +1,19 @@
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
{
public class AudioControlPointListItem
{
[JsonProperty("levelControls")]
public Dictionary<string, LevelControlListItem> LevelControls { get; set; }
[JsonProperty("presets")]
public Dictionary<string, PresetListItem> Presets { get; set; }
}
}