Radarr/NzbDrone.Core/Model/Sabnzbd/SabPriorityType.cs

12 lines
205 B
C#
Raw Normal View History

namespace NzbDrone.Core.Model.Sabnzbd
{
public enum SabPriorityType
{
Default = -100,
Paused = -2,
Low = -1,
Normal = 0,
High = 1,
Top = 2
}
2011-04-10 02:44:01 +00:00
}