using System; namespace PepperDash.Essentials.Devices.Common.Cameras { /// /// Interface for devices that can mute and unmute their camera video, with an event for unmute requests /// public interface IHasCameraMuteWithUnmuteReqeust : IHasCameraMute { /// /// Event that is raised when a video unmute is requested, typically by the far end /// event EventHandler VideoUnmuteRequested; } }