/* * Copyright (c) 2024 ETH Zürich, IT Services * * 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 related to the metadata capturing of the screen proctoring. /// [Serializable] public class MetaDataSettings { /// /// Determines whether data of the active application shall be captured and transmitted. /// public bool CaptureApplicationData { get; set; } /// /// Determines whether data of the browser application shall be captured and transmitted. /// public bool CaptureBrowserData { get; set; } /// /// Determines whether the title of the currently active window shall be captured and transmitted. /// public bool CaptureWindowTitle { get; set; } } }