Radarr/NzbDrone.Common/Messaging/Events/CommandFailedEvent.cs

16 lines
392 B
C#
Raw Normal View History

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