Restore SEBPatch

This commit is contained in:
2025-06-01 11:44:20 +02:00
commit 8c656e3137
1297 changed files with 142172 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
/*
* 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.UserInterface.Contracts.Browser.Data
{
/// <summary>
/// Defines the state of a download item.
/// </summary>
public class DownloadItemState
{
/// <summary>
/// The current completion of the item, as percentage value from <c>0.0</c> to <c>1.0</c>.
/// </summary>
public double Completion { get; set; }
/// <summary>
/// The full path of the download location for the item.
/// </summary>
public string FullPath { get; set; }
/// <summary>
/// The unique identifier of the item.
/// </summary>
public Guid Id { get; set; }
/// <summary>
/// Indicates that the download was cancelled.
/// </summary>
public bool IsCancelled { get; set; }
/// <summary>
/// Indicates that the download was completed.
/// </summary>
public bool IsComplete { get; set; }
/// <summary>
/// The download URL of the item.
/// </summary>
public string Url { get; set; }
public DownloadItemState(Guid id)
{
Id = id;
}
}
}

View File

@@ -0,0 +1,31 @@
/*
* 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/.
*/
namespace SafeExamBrowser.UserInterface.Contracts.Browser.Data
{
/// <summary>
/// The data resulting from a JavaScript expression evaluation.
/// </summary>
public class JavaScriptResult
{
/// <summary>
/// Indicates if the JavaScript was evaluated successfully or not.
/// </summary>
public bool Success { get; set; }
/// <summary>
/// The error message, in case of an unsuccessful evaluation of the JavaScript expression.
/// </summary>
public string Message { get; set; }
/// <summary>
/// The data item returned by the JavaScript expression.
/// </summary>
public object Result { get; set; }
}
}