Files
Essentials/src/PepperDash.Essentials.Core/Routing/IRoutingOutputSlot.cs
2025-07-22 15:53:01 +00:00

18 lines
426 B
C#

using System;
using System.Collections.Generic;
namespace PepperDash.Essentials.Core.Routing
{
/// <summary>
/// Defines the contract for IRoutingOutputSlot
/// </summary>
public interface IRoutingOutputSlot : IRoutingSlot
{
event EventHandler OutputSlotChanged;
string RxDeviceKey { get; }
Dictionary<eRoutingSignalType, IRoutingInputSlot> CurrentRoutes { get; }
}
}