mirror of
https://github.com/Radarr/Radarr
synced 2026-04-20 06:24:55 +02:00
13 lines
210 B
C#
13 lines
210 B
C#
namespace MonoTorrent
|
|
{
|
|
public enum Priority
|
|
{
|
|
DoNotDownload = 0,
|
|
Lowest = 1,
|
|
Low = 2,
|
|
Normal = 4,
|
|
High = 8,
|
|
Highest = 16,
|
|
Immediate = 32
|
|
}
|
|
}
|