mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-04-22 21:00:52 +02:00
10 lines
166 B
C#
10 lines
166 B
C#
namespace NzbDrone.Core.Messaging.Commands.Tracking
|
|
{
|
|
public enum CommandStatus
|
|
{
|
|
Pending,
|
|
Running,
|
|
Completed,
|
|
Failed
|
|
}
|
|
}
|