mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
17 lines
No EOL
446 B
C#
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;
|
|
}
|
|
}
|
|
} |