Video adding and subscriptions finished
This commit is contained in:
14
VDownload.Core/Enums/DownloadTaskStatus.cs
Normal file
14
VDownload.Core/Enums/DownloadTaskStatus.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace VDownload.Core.Enums
|
||||
{
|
||||
public enum DownloadTaskStatus
|
||||
{
|
||||
Idle,
|
||||
Scheduled,
|
||||
Queued,
|
||||
Downloading,
|
||||
Processing,
|
||||
Finalizing,
|
||||
EndedSuccessfully,
|
||||
EndedUnsuccessfully,
|
||||
}
|
||||
}
|
||||
9
VDownload.Core/Enums/DownloadTasksAddingRequestSource.cs
Normal file
9
VDownload.Core/Enums/DownloadTasksAddingRequestSource.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace VDownload.Core.Enums
|
||||
{
|
||||
public enum DownloadTasksAddingRequestSource
|
||||
{
|
||||
Video,
|
||||
Playlist,
|
||||
Subscriptions,
|
||||
}
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Core.Enums
|
||||
{
|
||||
public enum SubscriptionStatus
|
||||
{
|
||||
Added,
|
||||
Loaded,
|
||||
Ready
|
||||
}
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VDownload.Core.Enums
|
||||
{
|
||||
public enum TaskAddingRequestSource
|
||||
{
|
||||
Video,
|
||||
Playlist
|
||||
}
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
namespace VDownload.Core.Enums
|
||||
{
|
||||
public enum TaskStatus
|
||||
{
|
||||
Idle,
|
||||
Scheduled,
|
||||
Waiting,
|
||||
InProgress
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user