mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
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
|
|
}
|
|
}
|