Radarr/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdPriority.cs

13 lines
219 B
C#
Raw Normal View History

2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download.Clients.Sabnzbd
{
public enum SabnzbdPriority
{
Default = -100,
Paused = -2,
Low = -1,
Normal = 0,
High = 1,
Force = 2
}
2019-12-22 21:24:10 +00:00
}