1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 11:32:07 +00:00
Sonarr/NzbDrone.Common/Messaging/Events/CommandFailedEvent.cs

17 lines
No EOL
446 B
C#

using System;
using NzbDrone.Common.Messaging.Tracking;
namespace NzbDrone.Common.Messaging.Events
{
public class CommandFailedEvent : IEvent
{
public TrackedCommand Command { get; private set; }
public Exception Exception { get; private set; }
public CommandFailedEvent(TrackedCommand command, Exception exception)
{
Command = command;
Exception = exception;
}
}
}