15 lines
251 B
C#
15 lines
251 B
C#
|
|
namespace VDownload.Core.Enums
|
|||
|
|
{
|
|||
|
|
public enum DownloadTaskStatus
|
|||
|
|
{
|
|||
|
|
Idle,
|
|||
|
|
Scheduled,
|
|||
|
|
Queued,
|
|||
|
|
Downloading,
|
|||
|
|
Processing,
|
|||
|
|
Finalizing,
|
|||
|
|
EndedSuccessfully,
|
|||
|
|
EndedUnsuccessfully,
|
|||
|
|
}
|
|||
|
|
}
|