feat: RKST-131 add IMatrixRouting interfaces

This commit is contained in:
Andrew Welker
2024-03-08 11:16:48 -06:00
parent b0e9ecf29e
commit 9ad151bd7e
6 changed files with 62 additions and 1 deletions

View 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; }
}
}