mirror of
https://github.com/Readarr/Readarr
synced 2026-02-27 17:13:51 +01:00
New: Adding multiple series will queue them instead of running all at once New: Slower scheduled tasks won't be block others from running
15 lines
No EOL
345 B
C#
15 lines
No EOL
345 B
C#
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.Messaging.Events
|
|
{
|
|
public class CommandExecutedEvent : IEvent
|
|
{
|
|
public CommandModel Command { get; private set; }
|
|
|
|
public CommandExecutedEvent(CommandModel command)
|
|
{
|
|
Command = command;
|
|
}
|
|
}
|
|
} |