/* * 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.SystemComponents { /// /// Defines all settings for the audio device of the computer. /// [Serializable] public class AudioSettings { /// /// Defines whether the audio volume should be initialized to the value of during application startup. /// public bool InitializeVolume { get; set; } /// /// Defines the initial audio volume (from 0 to 100) to be used if is active. /// public int InitialVolume { get; set; } /// /// Defines whether the audio device should be muted during application startup. /// public bool MuteAudio { get; set; } } }