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