1.0-dev15 (Core code cleaning)
This commit is contained in:
24
VDownload.Core/EventArgs/ProgressChangedEventArgs.cs
Normal file
24
VDownload.Core/EventArgs/ProgressChangedEventArgs.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user