mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 03:14:57 +00:00
21 lines
602 B
C#
21 lines
602 B
C#
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; } = new Dictionary<string, LevelControlListItem>();
|
|
|
|
[JsonProperty("presets")]
|
|
public Dictionary<string, PresetListItem> Presets { get; set; } = new Dictionary<string, PresetListItem>();
|
|
|
|
}
|
|
}
|