2022-03-07 14:59:11 +01:00
|
|
|
|
namespace VDownload.Core.EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ProgressChangedEventArgs : System.EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
#region CONSTRUCTORS
|
|
|
|
|
|
|
|
|
|
|
|
public ProgressChangedEventArgs(double progress, bool isCompleted = false)
|
|
|
|
|
|
{
|
|
|
|
|
|
Progress = progress;
|
|
|
|
|
|
IsCompleted = isCompleted;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
2022-05-11 20:50:50 +02:00
|
|
|
|
public double Progress { get; private set; }
|
|
|
|
|
|
public bool IsCompleted { get; private set; }
|
2022-03-07 14:59:11 +01:00
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|