mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-29 11:03:51 +00:00
14 lines
249 B
C#
14 lines
249 B
C#
namespace Lantean.QBitTorrentClient.Models
|
|
{
|
|
public enum TrackerStatus
|
|
{
|
|
Disabled = 0,
|
|
Uncontacted = 1,
|
|
Working = 2,
|
|
Updating = 3,
|
|
NotWorking = 4,
|
|
Error = 5,
|
|
Unreachable = 6
|
|
}
|
|
}
|