Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingOutputSlot.cs
2024-03-08 11:16:48 -06:00

15 lines
342 B
C#

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