mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
f1d7c56d94
(cherry picked from commit ebe23104d4b29a3c900a982fb84e75c27ed531ab) Co-authored-by: CeruleanRed <toni.suta@gmail.com>
15 lines
291 B
C#
15 lines
291 B
C#
namespace NzbDrone.Core.DecisionEngine
|
|
{
|
|
public enum UpgradeableRejectReason
|
|
{
|
|
None,
|
|
BetterQuality,
|
|
BetterRevision,
|
|
QualityCutoff,
|
|
CustomFormatScore,
|
|
CustomFormatCutoff,
|
|
MinCustomFormatScore,
|
|
UpgradesNotAllowed
|
|
}
|
|
}
|