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