Essentials/src/PepperDash.Essentials.Core/Microphone Privacy/MicrophonePrivacyControllerConfig.cs
2026-03-10 00:21:06 -06:00

34 lines
No EOL
900 B
C#

using System.Collections.Generic;
namespace PepperDash.Essentials.Core.Privacy
{
/// <summary>
/// Represents a MicrophonePrivacyControllerConfig
/// </summary>
public class MicrophonePrivacyControllerConfig
{
/// <summary>
/// Gets or sets the Inputs
/// </summary>
public List<KeyedDevice> Inputs { get; set; }
/// <summary>
/// Gets or sets the GreenLedRelay
/// </summary>
public KeyedDevice GreenLedRelay { get; set; }
/// <summary>
/// Gets or sets the RedLedRelay
/// </summary>
public KeyedDevice RedLedRelay { get; set; }
}
/// <summary>
/// Represents a KeyedDevice
/// </summary>
public class KeyedDevice
{
/// <summary>
/// Gets or sets the DeviceKey
/// </summary>
public string DeviceKey { get; set; }
}
}