mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
a816a83f3a
better parallelism on RSS fetch
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;
|
|
}
|
|
}
|
|
} |