/* * 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.Core.Contracts.OperationModel.Events { /// /// The event arguments used for . /// public class ProgressChangedEventArgs { /// /// Specifies the current progress value, if set. /// public int? CurrentValue { get; set; } /// /// Indicates that the progress value is indeterminate, if set. /// public bool? IsIndeterminate { get; set; } /// /// Sets the maximum progress value, if set. /// public int? MaxValue { get; set; } /// /// Indicates that the current progress value has increased by 1, if set. /// public bool? Progress { get; set; } /// /// Indicates that the current progress value has decreased by 1, if set. /// public bool? Regress { get; set; } } }