mirror of
https://github.com/Lidarr/Lidarr
synced 2026-01-15 12:02:30 +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
|
|
}
|
|
}
|