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

18 lines
480 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace NzbDrone.Core.Download.Clients.Deluge
{
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";
}
}