mirror of
https://github.com/Readarr/Readarr
synced 2026-02-24 15:43:21 +01: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
|
|
}
|
|
}
|