11 lines
157 B
C#
11 lines
157 B
C#
|
namespace NzbDrone.Core.Messaging.Tracking
|
||
|
{
|
||
|
public enum CommandStatus
|
||
|
{
|
||
|
Pending,
|
||
|
Running,
|
||
|
Completed,
|
||
|
Failed
|
||
|
}
|
||
|
}
|