mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-04 23:35:02 +00:00
14 lines
387 B
C#
14 lines
387 B
C#
using PepperDash.Essentials.Core;
|
|
using PepperDash.Essentials.Devices.Common.VideoCodec.Cisco;
|
|
|
|
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
|
{
|
|
public interface IHasSelfviewPosition
|
|
{
|
|
StringFeedback SelfviewPipPositionFeedback { get; }
|
|
|
|
void SelfviewPipPositionSet(CodecCommandWithLabel position);
|
|
|
|
void SelfviewPipPositionToggle();
|
|
}
|
|
} |