/* * 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 Zoom. /// [Serializable] public class ZoomSettings { /// /// The API key to be used for authentication. /// public string ApiKey { get; set; } /// /// The API secret to be used for authentication. /// public string ApiSecret { get; set; } /// /// Determines whether proctoring with Zoom is enabled. /// public bool Enabled { get; set; } /// /// The number of the meeting. /// public int MeetingNumber { get; set; } /// /// The user name to be used for the meeting. /// public string UserName { get; set; } } }