mirror of
https://github.com/Radarr/Radarr
synced 2026-02-09 00:03:15 +01:00
11 lines
173 B
C#
11 lines
173 B
C#
namespace NzbDrone.Core.Download
|
|
{
|
|
public enum ProcessedDecisionResult
|
|
{
|
|
Grabbed,
|
|
Pending,
|
|
Rejected,
|
|
Failed,
|
|
Skipped
|
|
}
|
|
}
|