mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
34 lines
No EOL
900 B
C#
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; }
|
|
}
|
|
} |