Radarr/NzbDrone.Core/Model/ReportRejectionType.cs

24 lines
517 B
C#
Raw Normal View History

using System.Linq;
namespace NzbDrone.Core.Model
{
public enum ReportRejectionType
{
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,
2012-09-20 15:37:40 +00:00
AiredAfterCustomStartDate = 14
}
}