mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-06-30 00:05:58 -04:00
21 lines
331 B
C#
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,
|
|
}
|