Files
Cleanuparr/code/backend/Cleanuparr.Domain/Enums/DelugeState.cs

21 lines
331 B
C#

using Newtonsoft.Json;
namespace Cleanuparr.Domain.Enums;
/// <summary>
/// Torrent state values reported by Deluge
/// </summary>
[JsonConverter(typeof(DelugeStateConverter))]
public enum DelugeState
{
Unknown = 0,
Allocating,
Checking,
Downloading,
Seeding,
Paused,
Error,
Queued,
Moving,
}