mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 12:54:54 +00:00
26 lines
542 B
C#
26 lines
542 B
C#
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Essentials.Core;
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec
|
|
{
|
|
/// <summary>
|
|
/// Defines the required elements for layout control
|
|
/// </summary>
|
|
public interface IHasCodecLayouts
|
|
{
|
|
StringFeedback LocalLayoutFeedback { get; }
|
|
|
|
void LocalLayoutToggle();
|
|
void LocalLayoutToggleSingleProminent();
|
|
void MinMaxLayoutToggle();
|
|
}
|
|
} |