mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 12:37:07 +00:00
docs: remove duplicates
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
78e9ea8070
commit
53b1e5d142
1 changed files with 4 additions and 7 deletions
|
|
@ -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; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue