docs: remove duplicates

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Andrew Welker
2025-07-22 12:03:03 -05:00
committed by GitHub
parent 78e9ea8070
commit 53b1e5d142

View File

@@ -53,23 +53,20 @@
}
/*/// <summary>
/// Represents an individual link for a route
/// </summary>
/// <summary>
/// Represents a RouteSwitchDescriptor
/// Represents a RouteSwitchDescriptor with generic input and output selectors.
/// </summary>
public class RouteSwitchDescriptor<TInputSelector, TOutputSelector>
{
/// <summary>
/// Gets or sets the SwitchingDevice
/// Gets or sets the SwitchingDevice.
/// </summary>
public IRoutingInputs<TInputSelector> SwitchingDevice { get { return InputPort.ParentDevice; } }
/// <summary>
/// Gets or sets the OutputPort
/// Gets or sets the OutputPort.
/// </summary>
public RoutingOutputPort<TOutputSelector> OutputPort { get; set; }
/// <summary>
/// Gets or sets the InputPort
/// Gets or sets the InputPort.
/// </summary>
public RoutingInputPort<TInputSelector> InputPort { get; set; }