mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-10 18:24:50 +00:00
Update to poll meetings every 60 seconds Add property to allow for adjusting when Join button appears Refactor call connected event handler Adjust text for header for sharing-only meeting Add logic to handle waiting for host state
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Crestron.SimplSharp;
|
|
|
|
using PepperDash.Core;
|
|
using PepperDash.Essentials.Core;
|
|
|
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec.ZoomRoom
|
|
{
|
|
public class ZoomRoomPropertiesConfig
|
|
{
|
|
public CommunicationMonitorConfig CommunicationMonitorProperties { get; set; }
|
|
|
|
public bool DisablePhonebookAutoDownload { get; set; }
|
|
public bool SupportsCameraAutoMode { get; set; }
|
|
public bool SupportsCameraOff { get; set; }
|
|
|
|
//if true, the layouts will be set automatically when sharing starts/ends or a call is joined
|
|
public bool AutoDefaultLayouts { get; set; }
|
|
|
|
/* This layout will be selected when Sharing starts (either from Far end or locally)*/
|
|
public string DefaultSharingLayout { get; set; }
|
|
|
|
//This layout will be selected when a call is connected and no content is being shared
|
|
public string DefaultCallLayout { get; set; }
|
|
|
|
public int MinutesBeforeMeetingStart { get; set; }
|
|
}
|
|
} |