mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 12:44:58 +00:00
docs: remove duplicates
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -53,23 +53,20 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*/// <summary>
|
/*/// <summary>
|
||||||
/// Represents an individual link for a route
|
/// Represents a RouteSwitchDescriptor with generic input and output selectors.
|
||||||
/// </summary>
|
|
||||||
/// <summary>
|
|
||||||
/// Represents a RouteSwitchDescriptor
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class RouteSwitchDescriptor<TInputSelector, TOutputSelector>
|
public class RouteSwitchDescriptor<TInputSelector, TOutputSelector>
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the SwitchingDevice
|
/// Gets or sets the SwitchingDevice.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IRoutingInputs<TInputSelector> SwitchingDevice { get { return InputPort.ParentDevice; } }
|
public IRoutingInputs<TInputSelector> SwitchingDevice { get { return InputPort.ParentDevice; } }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the OutputPort
|
/// Gets or sets the OutputPort.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public RoutingOutputPort<TOutputSelector> OutputPort { get; set; }
|
public RoutingOutputPort<TOutputSelector> OutputPort { get; set; }
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets the InputPort
|
/// Gets or sets the InputPort.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public RoutingInputPort<TInputSelector> InputPort { get; set; }
|
public RoutingInputPort<TInputSelector> InputPort { get; set; }
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user