mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
22 lines
No EOL
521 B
C#
22 lines
No EOL
521 B
C#
using PepperDash.Core;
|
|
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingOutputs
|
|
/// </summary>
|
|
public interface IRoutingOutputs : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Collection of Output Ports
|
|
/// </summary>
|
|
RoutingPortCollection<RoutingOutputPort> OutputPorts { get; }
|
|
}
|
|
|
|
/* public interface IRoutingOutputs<TSelector> : IKeyed
|
|
{
|
|
RoutingPortCollection<RoutingOutputPort<TSelector>, TSelector> OutputPorts { get; }
|
|
}*/
|
|
} |