1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-28 02:37:40 +00:00
Sonarr/NzbDrone.Core/DecisionEngine/ReportRejectionReasons.cs

23 lines
541 B
C#
Raw Normal View History

2013-03-06 20:30:53 +00:00
namespace NzbDrone.Core.DecisionEngine
{
2013-03-06 20:30:53 +00:00
public enum ReportRejectionReasons
{
None = 0,
WrongSeries = 1,
QualityNotWanted = 2,
WrongSeason = 3,
2012-04-21 08:16:15 +00:00
WrongEpisode = 4,
Size = 5,
Retention = 6,
ExistingQualityIsEqualOrBetter = 7,
Cutoff = 8,
AlreadyInQueue = 9,
DownloadClientFailure = 10,
Skipped = 11,
Failure = 12,
2012-09-19 01:30:30 +00:00
ReleaseGroupNotWanted = 13,
AiredAfterCustomStartDate = 14,
LanguageNotWanted = 15
}
}