refactor: move routing interfaces into their own files

This commit is contained in:
Andrew Welker
2024-04-10 09:27:27 -05:00
parent 5fad706cd8
commit c0adcb9b1e
35 changed files with 1440 additions and 809 deletions

View File

@@ -0,0 +1,19 @@
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; }
}*/
}