/* * Copyright (c) 2021 ETH Zürich, Educational Development and Technology (LET) * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ using System; namespace SafeExamBrowser.Settings.Proctoring { /// /// All settings for the meeting provider Jitsi Meet. /// [Serializable] public class JitsiMeetSettings { /// /// Determines whether proctoring with Jitsi Meet is enabled. /// public bool Enabled { get; set; } /// /// The name of the meeting room. /// public string RoomName { get; set; } /// /// The URL of the Jitsi Meet server. /// public string ServerUrl { get; set; } /// /// The subject of the meeting. /// public string Subject { get; set; } /// /// The authentication token for the meeting. /// public string Token { get; set; } } }