2021-04-12 10:59:31 +02:00
|
|
|
|
/*
|
2023-03-08 00:30:20 +01:00
|
|
|
|
* Copyright (c) 2023 ETH Zürich, Educational Development and Technology (LET)
|
2021-04-12 10:59:31 +02:00
|
|
|
|
*
|
|
|
|
|
* 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/.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace SafeExamBrowser.Server.Data
|
|
|
|
|
{
|
|
|
|
|
internal sealed class Instructions
|
|
|
|
|
{
|
2022-09-02 14:56:49 +02:00
|
|
|
|
internal const string LOCK_SCREEN = "SEB_FORCE_LOCK_SCREEN";
|
2021-09-17 10:47:02 +02:00
|
|
|
|
internal const string NOTIFICATION_CONFIRM = "NOTIFICATION_CONFIRM";
|
2021-04-12 10:59:31 +02:00
|
|
|
|
internal const string PROCTORING = "SEB_PROCTORING";
|
|
|
|
|
internal const string PROCTORING_RECONFIGURATION = "SEB_RECONFIGURE_SETTINGS";
|
|
|
|
|
internal const string QUIT = "SEB_QUIT";
|
|
|
|
|
}
|
|
|
|
|
}
|