mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-11 18:54:52 +00:00
docs: XML comments for Devices.Common
This commit is contained in:
@@ -1,9 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using Crestron.SimplSharp;
|
||||
using PepperDash.Essentials.Core;
|
||||
using PepperDash.Essentials.Core;
|
||||
|
||||
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
||||
{
|
||||
@@ -12,10 +7,24 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
||||
/// </summary>
|
||||
public interface IHasMeetingLock
|
||||
{
|
||||
/// <summary>
|
||||
/// Feedback that indicates whether the meeting is locked
|
||||
/// </summary>
|
||||
BoolFeedback MeetingIsLockedFeedback { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Locks the meeting
|
||||
/// </summary>
|
||||
void LockMeeting();
|
||||
|
||||
/// <summary>
|
||||
/// Unlocks the meeting
|
||||
/// </summary>
|
||||
void UnLockMeeting();
|
||||
|
||||
/// <summary>
|
||||
/// Toggles the meeting lock state
|
||||
/// </summary>
|
||||
void ToggleMeetingLock();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user