Radarr/src/NzbDrone.Core/Messaging/Commands/CommandResult.cs
Mark McDowall 116db9701b New: Add result to commands to report commands that did not complete successfully
(cherry picked from commit 103ce3def4636ef891e72bd687ef8f46b5125233)
2023-05-04 11:40:01 +03:00

9 lines
159 B
C#

namespace NzbDrone.Core.Messaging.Commands
{
public enum CommandResult
{
Unknown = 0,
Successful = 1,
Unsuccessful = 2
}
}