mirror of
https://github.com/Radarr/Radarr
synced 2025-12-20 15:24:41 +01:00
16 lines
263 B
C#
16 lines
263 B
C#
namespace NzbDrone.Core.Queue
|
|
{
|
|
public enum QueueStatus
|
|
{
|
|
Unknown,
|
|
Queued,
|
|
Paused,
|
|
Downloading,
|
|
Completed,
|
|
Failed,
|
|
Warning,
|
|
Delay,
|
|
DownloadClientUnavailable,
|
|
Fallback
|
|
}
|
|
}
|