mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 10:24:55 +00:00
22 lines
524 B
C#
22 lines
524 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core.CrestronIO;
|
|
|
|
namespace PepperDash.Essentials.Core.Privacy
|
|
{
|
|
public class MicrophonePrivacyControllerConfig
|
|
{
|
|
public List<KeyedDevice> Inputs { get; set; }
|
|
public KeyedDevice GreenLedRelay { get; set; }
|
|
public KeyedDevice RedLedRelay { get; set; }
|
|
}
|
|
|
|
public class KeyedDevice
|
|
{
|
|
public string DeviceKey { get; set; }
|
|
}
|
|
} |