1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Core/Model/SabnzbdPriorityType.cs
2011-04-09 19:44:01 -07:00

12 lines
201 B
C#

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