Add project files.

This commit is contained in:
ahjephson
2024-04-22 14:15:07 +01:00
parent ce7b627fa9
commit f9847c60f5
166 changed files with 14345 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace Lantean.QBitTorrentClient.Models
{
public enum TrackerStatus
{
Disabled = 0,
Uncontacted = 1,
Working = 2,
Updating = 3,
NotWorking = 4,
}
}