mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 11:24:55 +00:00
16 lines
487 B
C#
16 lines
487 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingInputsOutputs
|
|
/// </summary>
|
|
public interface IRoutingInputsOutputs : IRoutingInputs, IRoutingOutputs
|
|
{
|
|
}
|
|
|
|
/* /// <summary>
|
|
/// For devices like RMCs, baluns, other devices with no switching.
|
|
/// </summary>
|
|
public interface IRoutingInputsOutputs<TInputSelector, TOutputSelector> : IRoutingInputs<TInputSelector>, IRoutingOutputs<TOutputSelector>
|
|
{
|
|
}*/
|
|
} |