mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-09 15:24:00 -04:00
13 lines
248 B
C#
13 lines
248 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Cleanuparr.Domain.Enums;
|
|
|
|
[JsonConverter(typeof(JsonStringEnumConverter))]
|
|
public enum SeekerSearchReason
|
|
{
|
|
Missing,
|
|
QualityCutoffNotMet,
|
|
CustomFormatScoreBelowCutoff,
|
|
Replacement,
|
|
}
|