mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 11:54:57 +00:00
19 lines
456 B
C#
19 lines
456 B
C#
using PepperDash.Core;
|
|
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines a class that has a collection of RoutingOutputPorts
|
|
/// </summary>
|
|
|
|
public interface IRoutingOutputs : IKeyed
|
|
{
|
|
RoutingPortCollection<RoutingOutputPort> OutputPorts { get; }
|
|
}
|
|
|
|
/* public interface IRoutingOutputs<TSelector> : IKeyed
|
|
{
|
|
RoutingPortCollection<RoutingOutputPort<TSelector>, TSelector> OutputPorts { get; }
|
|
}*/
|
|
} |