mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-04 07:14:58 +00:00
17 lines
574 B
C#
17 lines
574 B
C#
namespace PepperDash.Essentials.Core
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for ITxRouting
|
|
/// </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; }
|
|
}
|
|
} |