Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingOutputSlot.cs
2024-04-09 08:33:58 -05:00

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