mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 03:45:01 +00:00
Placeholder - need to figure out DMPS situation - likely needs a completely new paradigm for the switcher here
37 lines
962 B
C#
37 lines
962 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using Crestron.SimplSharp;
|
|
using Newtonsoft.Json;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Core.Config;
|
|
using PepperDash.Essentials.Devices.Common.DSP;
|
|
|
|
namespace PepperDash.Essentials
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class EssentialsRoomVolumesConfig
|
|
{
|
|
public EssentialsVolumeLevelConfig Master { get; set; }
|
|
public EssentialsVolumeLevelConfig Program { get; set; }
|
|
public EssentialsVolumeLevelConfig AudioCallRx { get; set; }
|
|
public EssentialsVolumeLevelConfig AudioCallTx { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class EssentialsVolumeLevelConfig
|
|
{
|
|
public string DeviceKey { get; set; }
|
|
public string Label { get; set; }
|
|
public int Level { get; set; }
|
|
|
|
}
|
|
} |