You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/NzbDrone.Core/Download/Clients/Deluge/DelugeTorrentStatus.cs

13 lines
400 B

namespace NzbDrone.Core.Download.Clients.Deluge
{
public class DelugeTorrentStatus
{
public const string Paused = "Paused";
public const string Queued = "Queued";
public const string Downloading = "Downloading";
public const string Seeding = "Seeding";
public const string Checking = "Checking";
public const string Error = "Error";
}
}