mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 20:04:56 +00:00
18 lines
429 B
C#
18 lines
429 B
C#
using PepperDash.Core;
|
|
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingInputs
|
|
/// </summary>
|
|
public interface IRoutingInputs : IKeyed
|
|
{
|
|
RoutingPortCollection<RoutingInputPort> InputPorts { get; }
|
|
}
|
|
|
|
/* public interface IRoutingInputs<TSelector> : IKeyed
|
|
{
|
|
RoutingPortCollection<RoutingInputPort<TSelector>, TSelector> InputPorts { get; }
|
|
}*/
|
|
} |