Video adding and subscriptions finished
This commit is contained in:
24
VDownload.Core/EventArgs/DownloadTaskScheduledEventArgs.cs
Normal file
24
VDownload.Core/EventArgs/DownloadTaskScheduledEventArgs.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
|
||||
namespace VDownload.Core.EventArgs
|
||||
{
|
||||
public class DownloadTaskScheduledEventArgs : System.EventArgs
|
||||
{
|
||||
#region CONSTRUCTORS
|
||||
|
||||
public DownloadTaskScheduledEventArgs(DateTime scheduledFor)
|
||||
{
|
||||
ScheduledFor = scheduledFor;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
|
||||
#region PROPERTIES
|
||||
|
||||
public DateTime ScheduledFor { get; private set; }
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user