mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 11:54:57 +00:00
12 lines
435 B
C#
12 lines
435 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
public interface IRoutingWithClear : IRouting
|
|
{
|
|
/// <summary>
|
|
/// Clears a route to an output, however a device needs to do that
|
|
/// </summary>
|
|
/// <param name="outputSelector">Output to clear</param>
|
|
/// <param name="signalType">signal type to clear</param>
|
|
void ClearRoute(object outputSelector, eRoutingSignalType signalType);
|
|
}
|
|
} |