mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 11:54:57 +00:00
16 lines
504 B
C#
16 lines
504 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// For devices like RMCs, baluns, other devices with no switching.
|
|
/// </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>
|
|
{
|
|
}*/
|
|
} |