1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Core/Model/SabnzbdPriorityType.cs
markus101 e7cbc4cbcf Added additional priorities supported by SABnzbd.
From shypike:This is the (kind of weird) priority table:

TOP_PRIORITY = 2
HIGH_PRIORITY = 1
NORMAL_PRIORITY = 0
LOW_PRIORITY = -1
DEFAULT_PRIORITY = -100
PAUSED_PRIORITY = -2

-100 won't do a thing, since it means: whatever is default.
2011-02-11 00:12:44 -08:00

13 lines
202 B
C#

namespace NzbDrone.Core.Model
{
public enum SabnzbdPriorityType
{
Default = -100,
Paused = -2,
Low = -1,
Normal = 0,
High = 1,
Top = 2
}
}