mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-13 13:58:20 -04:00
20 lines
373 B
C#
20 lines
373 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Cleanuparr.Domain.Enums;
|
|
|
|
/// <summary>
|
|
/// Command state values reported by the arr command endpoint
|
|
/// </summary>
|
|
[JsonConverter(typeof(TolerantEnumConverter<ArrCommandState>))]
|
|
public enum ArrCommandState
|
|
{
|
|
Unknown = 0,
|
|
Queued,
|
|
Started,
|
|
Completed,
|
|
Failed,
|
|
Aborted,
|
|
Cancelled,
|
|
Orphaned,
|
|
}
|