mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 02:44:57 +00:00
24 lines
686 B
C#
24 lines
686 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
|
|
{
|
|
/// <summary>
|
|
/// Represents a AudioControlPointListItem
|
|
/// </summary>
|
|
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>();
|
|
|
|
}
|
|
}
|