mirror of https://github.com/Sonarr/Sonarr
16 lines
385 B
C#
16 lines
385 B
C#
using System;
|
|
|
|
namespace NzbDrone.Common.Messaging
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
} |