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