Radarr/src/NzbDrone.Core/Download/Clients/rTorrent/RTorrentPriority.cs

11 lines
180 B
C#

namespace NzbDrone.Core.Download.Clients.RTorrent
{
public enum RTorrentPriority
{
DoNotDownload = 0,
Low = 1,
Normal = 2,
High = 3
}
}