using PepperDash.Core;
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Devices.Common.Cameras
{
///
/// Interface for devices that have a far end camera control
///
public interface IHasFarEndCameraControl : IKeyName
{
///
/// Gets the far end camera, which is typically a CameraBase object that represents the camera at the far end of a call
///
CameraBase FarEndCamera { get; }
///
/// Feedback that indicates whether the far end camera is being controlled
///
BoolFeedback ControllingFarEndCameraFeedback { get; }
}
}