seb-win-refactoring/SafeExamBrowser.Contracts/Configuration/Settings/TaskbarSettings.cs

40 lines
1.2 KiB
C#
Raw Normal View History

/*
* Copyright (c) 2019 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/.
*/
2018-02-15 15:42:54 +01:00
using System;
namespace SafeExamBrowser.Contracts.Configuration.Settings
{
/// <summary>
/// Defines all configuration options for the <see cref="UserInterface.Taskbar.ITaskbar"/>.
/// </summary>
2018-02-15 15:42:54 +01:00
[Serializable]
public class TaskbarSettings
{
/// <summary>
/// Determines whether the user may switch the keyboard layout during runtime.
/// </summary>
2018-02-15 15:42:54 +01:00
public bool AllowKeyboardLayout { get; set; }
/// <summary>
/// Determines whether the user may access the application log during runtime.
/// </summary>
2018-02-15 15:42:54 +01:00
public bool AllowApplicationLog { get; set; }
/// <summary>
/// Determines whether the user may control the wireless network connection during runtime.
/// </summary>
2018-02-15 15:42:54 +01:00
public bool AllowWirelessNetwork { get; set; }
/// <summary>
/// Determines whether the current date and time will be rendered in the taskbar.
/// </summary>
public bool ShowClock { get; set; }
}
}