Lidarr/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrentState.cs

10 lines
163 B
C#

namespace NzbDrone.Core.Download.Clients.QBittorrent
{
public enum QBittorrentState
{
Start = 0,
ForceStart = 1,
Pause = 2
}
}