Files
FSI.BT.IR.Tools/RoboSharp/EventArgObjects/ProgressEstimatorCreatedEventArgs.cs
Maier Stephan SI 1c68b8f401 Sicherung
2023-04-17 07:07:49 +02:00

30 lines
814 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using RoboSharp.Interfaces;
// Do Not change NameSpace here! -> Must be RoboSharp due to prior releases
namespace RoboSharp.EventArgObjects
{
/// <summary>
/// Reports that a ProgressEstimator object is now available for binding
/// </summary>
public class ProgressEstimatorCreatedEventArgs : EventArgs
{
private ProgressEstimatorCreatedEventArgs() : base() { }
internal ProgressEstimatorCreatedEventArgs(IProgressEstimator estimator) : base()
{
ResultsEstimate = estimator;
}
/// <summary>
/// <inheritdoc cref="Results.ProgressEstimator"/>
/// </summary>
public IProgressEstimator ResultsEstimate { get; }
}
}