chore: move all files to file-scoped namespace

This commit is contained in:
Andrew Welker 2025-07-04 16:02:32 -05:00 committed by Neil Dorin
parent aaa5b0532b
commit 3ece4f0b7b
522 changed files with 39628 additions and 45678 deletions

View file

@ -1,21 +1,14 @@
using PepperDash.Core;
namespace PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Core
/// <summary>
/// Defines the contract for IRoutingInputs
/// </summary>
public interface IRoutingInputs : IKeyed
{
/// <summary>
/// Defines the contract for IRoutingInputs
/// Collection of Input Ports
/// </summary>
public interface IRoutingInputs : IKeyed
{
/// <summary>
/// Collection of Input Ports
/// </summary>
RoutingPortCollection<RoutingInputPort> InputPorts { get; }
}
RoutingPortCollection<RoutingInputPort> InputPorts { get; }
}
/* public interface IRoutingInputs<TSelector> : IKeyed
{
RoutingPortCollection<RoutingInputPort<TSelector>, TSelector> InputPorts { get; }
}*/
}