mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-25 17:41:57 -04:00
14 lines
226 B
C#
14 lines
226 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Cleanuparr.Domain.Enums;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum SearchCommandStatus
|
|
{
|
|
Pending,
|
|
Started,
|
|
Completed,
|
|
Failed,
|
|
TimedOut
|
|
}
|