mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 09:15:06 +00:00
29 lines
793 B
C#
29 lines
793 B
C#
extern alias Full;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Devices.Common.DSP;
|
|
using System;
|
|
using System.Text.RegularExpressions;
|
|
|
|
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; }
|
|
}
|
|
} |