using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using PepperDash.Essentials.Core; namespace PepperDash.Essentials.Devices.Common.VideoCodec { /// /// Defines the requred elements for selfview control /// public interface IHasCodecSelfView { BoolFeedback SelfviewIsOnFeedback { get; } bool ShowSelfViewByDefault { get; } void SelfViewModeOn(); void SelfViewModeOff(); void SelfViewModeToggle(); } }