feat(essentials): adds IHasMeetingRecording and implements on ZoomRoom

This commit is contained in:
Neil Dorin
2021-11-04 17:08:51 -06:00
parent 11ffc5130f
commit 31f976d719
4 changed files with 78 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
using PepperDash.Essentials.Core;
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
{
public interface IHasMeetingRecording
{
BoolFeedback MeetingIsRecordingFeedback { get; }
void StartRecording();
void StopRecording();
void ToggleRecording();
}
}