mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
feat: Update .gitignore and enhance routing-related classes
- Updated `.gitignore` to include additional files and directories. - Added summary comments and new properties in `LevelControlListItem.cs` for better clarity and functionality. - Enhanced documentation in `SourceListItem.cs` and introduced new properties, including `Destinations` and a `ToString` method. - Introduced `SourceRouteListItem` class with routing properties and expanded `eSourceListItemDestinationTypes` enum. - Added `IRoutingSinkWithInputPort` interface in `IRoutingSink.cs` to support input port functionality.
This commit is contained in:
parent
95c1c01396
commit
2fa297a204
4 changed files with 154 additions and 4 deletions
|
|
@ -7,8 +7,14 @@
|
|||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// For fixed-source endpoint devices with an input port
|
||||
/// </summary>
|
||||
public interface IRoutingSinkWithInputPort :IRoutingSink
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the current input port for this routing sink.
|
||||
/// </summary>
|
||||
RoutingInputPort CurrentInputPort { get; }
|
||||
}
|
||||
/*/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue