aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Operation/PreparingJobProgressEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Operation/PreparingJobProgressEventArgs.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Operation/PreparingJobProgressEventArgs.cs31
1 files changed, 31 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Operation/PreparingJobProgressEventArgs.cs b/Software/Visual_Studio/Tango.Integration/Operation/PreparingJobProgressEventArgs.cs
new file mode 100644
index 000000000..7c53fd7fb
--- /dev/null
+++ b/Software/Visual_Studio/Tango.Integration/Operation/PreparingJobProgressEventArgs.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.BL.Entities;
+
+namespace Tango.Integration.Operation
+{
+ /// <summary>
+ /// Represents the <see cref="IMachineOperator.PreparingJobProgress"/> event arguments.
+ /// </summary>
+ /// <seealso cref="System.EventArgs" />
+ public class PreparingJobProgressEventArgs : EventArgs
+ {
+ /// <summary>
+ /// Gets or sets the job.
+ /// </summary>
+ public Job Job { get; set; }
+
+ /// <summary>
+ /// Gets or sets the progress.
+ /// </summary>
+ public double Progress { get; set; }
+
+ /// <summary>
+ /// Gets or sets the total progress.
+ /// </summary>
+ public double Total { get; set; }
+ }
+}