mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
14 lines
319 B
C#
14 lines
319 B
C#
using PepperDash.Core;
|
|
namespace PepperDash.Essentials.Core;
|
|
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingInputs
|
|
/// </summary>
|
|
public interface IRoutingInputs : IKeyed
|
|
{
|
|
/// <summary>
|
|
/// Collection of Input Ports
|
|
/// </summary>
|
|
RoutingPortCollection<RoutingInputPort> InputPorts { get; }
|
|
}
|
|
|