mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
638e3ca898
New: Adding multiple series will queue them instead of running all at once New: Slower scheduled tasks won't be block others from running
16 lines
340 B
C#
16 lines
340 B
C#
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
|
|
namespace NzbDrone.Core.ProgressMessaging
|
|
{
|
|
public class CommandUpdatedEvent : IEvent
|
|
{
|
|
public CommandModel Command { get; set; }
|
|
|
|
public CommandUpdatedEvent(CommandModel command)
|
|
{
|
|
Command = command;
|
|
}
|
|
}
|
|
}
|