25 lines
482 B
C#
25 lines
482 B
C#
|
|
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
|
|||
|
|
|
|||
|
|
public double Progress { get; set; }
|
|||
|
|
public bool IsCompleted { get; set; }
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
}
|
|||
|
|
}
|