using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; namespace Tango.Integration.Operation { /// /// Represents the event arguments. /// /// public class PreparingJobProgressEventArgs : EventArgs { /// /// Gets or sets the job. /// public Job Job { get; set; } /// /// Gets or sets the progress. /// public double Progress { get; set; } /// /// Gets or sets the total progress. /// public double Total { get; set; } } }