mirror of
https://github.com/Radarr/Radarr
synced 2026-01-14 03:23:19 +01:00
10 lines
166 B
C#
10 lines
166 B
C#
namespace NzbDrone.Core.Messaging.Commands.Tracking
|
|
{
|
|
public enum CommandStatus
|
|
{
|
|
Pending,
|
|
Running,
|
|
Completed,
|
|
Failed
|
|
}
|
|
}
|