mirror of
https://github.com/Readarr/Readarr
synced 2026-01-13 11:03:45 +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
|
|
}
|
|
}
|