mirror of
https://github.com/Radarr/Radarr.git
synced 2026-03-29 18:15:37 -04:00
14 lines
210 B
C#
14 lines
210 B
C#
namespace MonoTorrent
|
|
{
|
|
public enum Priority
|
|
{
|
|
DoNotDownload = 0,
|
|
Lowest = 1,
|
|
Low = 2,
|
|
Normal = 4,
|
|
High = 8,
|
|
Highest = 16,
|
|
Immediate = 32
|
|
}
|
|
}
|