2024-02-13 02:59:40 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Common
|
2022-05-11 20:50:50 +02:00
|
|
|
|
{
|
|
|
|
|
|
public enum DownloadTaskStatus
|
|
|
|
|
|
{
|
|
|
|
|
|
Idle,
|
2024-02-13 02:59:40 +01:00
|
|
|
|
EndedSuccessfully,
|
|
|
|
|
|
EndedUnsuccessfully,
|
|
|
|
|
|
EndedCancelled,
|
2022-05-11 20:50:50 +02:00
|
|
|
|
Queued,
|
2024-02-13 02:59:40 +01:00
|
|
|
|
Initializing,
|
2022-05-11 20:50:50 +02:00
|
|
|
|
Processing,
|
2024-02-13 02:59:40 +01:00
|
|
|
|
Downloading,
|
2022-05-11 20:50:50 +02:00
|
|
|
|
Finalizing,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|