mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 02:35:00 +00:00
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.DSP
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class BiampTesiraFortePropertiesConfig
|
|
{
|
|
public CommunicationMonitorConfig CommunicationMonitorProperties { get; set; }
|
|
|
|
public ControlPropertiesConfig Control { get; set; }
|
|
|
|
/// <summary>
|
|
/// These are key-value pairs, string id, string type.
|
|
/// Valid types are level and mute.
|
|
/// Need to include the index values somehow
|
|
/// </summary>
|
|
public Dictionary<string, BiampTesiraForteLevelControlBlockConfig> LevelControlBlocks { get; set; }
|
|
// public Dictionary<string, BiampTesiraForteDialerControlBlockConfig> DialerControlBlocks {get; set;}
|
|
}
|
|
|
|
public class BiampTesiraForteLevelControlBlockConfig
|
|
{
|
|
public bool Enabled { get; set; }
|
|
public string Label { get; set; }
|
|
public string InstanceTag { get; set; }
|
|
public int Index1 { get; set; }
|
|
public int Index2 { get; set; }
|
|
public bool HasMute { get; set; }
|
|
public bool HasLevel { get; set; }
|
|
}
|
|
} |