mirror of
https://github.com/Readarr/Readarr
synced 2026-04-29 00:01:17 +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
|
|
}
|
|
}
|