mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 12:24:59 +00:00
11 lines
262 B
C#
11 lines
262 B
C#
namespace PepperDash.Essentials.Core.Routing
|
|
{
|
|
/// <summary>
|
|
/// Defines the contract for IRoutingInputSlot
|
|
/// </summary>
|
|
public interface IRoutingInputSlot: IRoutingSlot, IOnline, IVideoSync
|
|
{
|
|
string TxDeviceKey { get; }
|
|
}
|
|
}
|