using PepperDash.Core; namespace PepperDash.Essentials.Core { /// /// Defines the contract for IRoutingOutputs /// public interface IRoutingOutputs : IKeyed { /// /// Collection of Output Ports /// RoutingPortCollection OutputPorts { get; } } /* public interface IRoutingOutputs : IKeyed { RoutingPortCollection, TSelector> OutputPorts { get; } }*/ }