using PepperDash.Core;
namespace PepperDash.Essentials.Core
{
///
/// Defines a class that has a collection of RoutingOutputPorts
///
public interface IRoutingOutputs : IKeyed
{
RoutingPortCollection OutputPorts { get; }
}
/* public interface IRoutingOutputs : IKeyed
{
RoutingPortCollection, TSelector> OutputPorts { get; }
}*/
}