/* * 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.Monitoring { /// /// Defines all settings related to the display configuration monitoring. /// [Serializable] public class DisplaySettings { /// /// Defines the number of allowed displays. /// public int AllowedDisplays { get; set; } /// /// Determines whether the display(s) will remain always on or not. This does not prevent the operating system from entering sleep mode or /// standby, see . /// public bool AlwaysOn { get; set; } /// /// Determines whether any display configuration may be allowed when the configuration can't be verified due to an error. /// public bool IgnoreError { get; set; } /// /// Determines whether only an internal display may be used. /// public bool InternalDisplayOnly { get; set; } } }