feat(essentials): Adds new interface and event to notify if video unmute is requested

This commit is contained in:
Neil Dorin
2022-03-01 21:43:38 -07:00
parent 97b9ed5016
commit 787c8eb954
2 changed files with 15 additions and 2 deletions

View File

@@ -57,6 +57,11 @@ namespace PepperDash.Essentials.Devices.Common.Cameras
void CameraMuteToggle();
}
public interface IHasCameraMuteWithUnmuteReqeust : IHasCameraMute
{
event EventHandler VideoUnmuteRequested;
}
public class CameraSelectedEventArgs : EventArgs
{
public CameraBase SelectedCamera { get; private set; }