using PepperDash.Core; namespace PepperDash.Essentials.Core; /// /// Defines the contract for IRoutingInputs /// public interface IRoutingInputs : IKeyed { /// /// Collection of Input Ports /// RoutingPortCollection InputPorts { get; } }