11 lines
166 B
11 lines
166 B
12 years ago
|
namespace NzbDrone.Core.Messaging.Commands.Tracking
|
||
12 years ago
|
{
|
||
|
public enum CommandStatus
|
||
|
{
|
||
|
Pending,
|
||
|
Running,
|
||
|
Completed,
|
||
|
Failed
|
||
|
}
|
||
|
}
|