using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.PPC.Common.BackupRestore { /// /// Represents a backup restore procedure progress. /// /// public class BackupRestoreProgressEventArgs : EventArgs { /// /// Gets or sets a value indicating whether the progress is intermediate. /// public bool IsIntermediate { get; set; } /// /// Gets or sets the progress value. /// public double Progress { get; set; } /// /// Gets or sets the maximum progress. /// public double MaxProgress { get; set; } /// /// Gets or sets the progress stage. /// public BackupRestoreStage Stage { get; set; } } }