mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 04:21:27 +02:00
improvements to scheduler,
better parallelism on RSS fetch
This commit is contained in:
12
NzbDrone.Common/Messaging/CommandCompletedEvent.cs
Normal file
12
NzbDrone.Common/Messaging/CommandCompletedEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace NzbDrone.Common.Messaging
|
||||
{
|
||||
public class CommandCompletedEvent : IEvent
|
||||
{
|
||||
public ICommand Command { get; private set; }
|
||||
|
||||
public CommandCompletedEvent(ICommand command)
|
||||
{
|
||||
Command = command;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user