mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-29 04:15:00 +00:00
22 lines
700 B
C#
22 lines
700 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Devices.Common.VideoCodec.Cisco;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.Codec
|
|
{
|
|
public interface IHasExternalSourceSwitching
|
|
{
|
|
bool ExternalSourceListEnabled { get; }
|
|
string ExternalSourceInputPort { get; }
|
|
void AddExternalSource(string connectorId, string key, string name, eExternalSourceType type);
|
|
void SetExternalSourceState(string key, eExternalSourceMode mode);
|
|
void ClearExternalSources();
|
|
void SetSelectedSource(string key);
|
|
Action<string, string> RunRouteAction { set;}
|
|
}
|
|
|
|
} |