using System.Collections.Generic;
namespace PepperDash.Essentials.Core.CrestronIO
{
///
/// Describes an output capable of switching on and off
///
public interface ISwitchedOutput
{
BoolFeedback OutputIsOnFeedback {get;}
void On();
void Off();
}
public interface ISwitchedOutputCollection
{
Dictionary SwitchedOutputs { get; }
}
}