mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 02:05:08 +00:00
26 lines
556 B
C#
26 lines
556 B
C#
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
|
|
{
|
|
/// <summary>
|
|
/// Defines the requred elements for selfview control
|
|
/// </summary>
|
|
public interface IHasCodecSelfView
|
|
{
|
|
BoolFeedback SelfviewIsOnFeedback { get; }
|
|
|
|
bool ShowSelfViewByDefault { get; }
|
|
|
|
void SelfViewModeOn();
|
|
|
|
void SelfViewModeOff();
|
|
|
|
void SelfViewModeToggle();
|
|
}
|
|
} |