mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-07 08:45:06 +00:00
feat: RKST-131 add IMatrixRouting interfaces
This commit is contained in:
14
src/PepperDash.Essentials.Core/Routing/IRoutingOutputSlot.cs
Normal file
14
src/PepperDash.Essentials.Core/Routing/IRoutingOutputSlot.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace PepperDash.Essentials.Core.Routing
|
||||
{
|
||||
public interface IRoutingOutputSlot:IRoutingSlot
|
||||
{
|
||||
event EventHandler<EventArgs> OutputSlotChanged;
|
||||
|
||||
string RxDeviceKey { get; }
|
||||
|
||||
Dictionary<eRoutingSignalType, IRoutingInputSlot> CurrentRoutes { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user