mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 18:34:44 +00:00
15 lines
337 B
C#
15 lines
337 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Core.Routing
|
|
{
|
|
public interface IRoutingOutputSlot : IRoutingSlot
|
|
{
|
|
event EventHandler OutputSlotChanged;
|
|
|
|
string RxDeviceKey { get; }
|
|
|
|
Dictionary<eRoutingSignalType, IRoutingInputSlot> CurrentRoutes { get; }
|
|
}
|
|
}
|