mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-09 01:35:02 +00:00
18 lines
703 B
C#
18 lines
703 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Represents a routing device (typically a transmitter or source) that provides numeric feedback for its current route.
|
|
/// Extends <see cref="IRoutingNumeric"/>.
|
|
/// </summary>
|
|
public interface ITxRouting : IRoutingNumeric
|
|
{
|
|
/// <summary>
|
|
/// Feedback indicating the currently routed video source by its numeric identifier.
|
|
/// </summary>
|
|
IntFeedback VideoSourceNumericFeedback { get; }
|
|
/// <summary>
|
|
/// Feedback indicating the currently routed audio source by its numeric identifier.
|
|
/// </summary>
|
|
IntFeedback AudioSourceNumericFeedback { get; }
|
|
}
|
|
} |