mirror of
https://github.com/Lidarr/Lidarr
synced 2026-02-27 09:02:05 +01:00
16 lines
No EOL
385 B
C#
16 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |