using System.Collections.Generic; namespace PepperDash.Essentials.Core.Routing { public interface IMatrixRouting { Dictionary InputSlots { get; } Dictionary OutputSlots { get; } void Route(string inputSlotKey, string outputSlotKey, eRoutingSignalType type); } }