mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 04:51:45 +02:00
Commands are stored in memory and prevents duplicate jobs
This commit is contained in:
12
NzbDrone.Common/Messaging/Events/CommandCompletedEvent.cs
Normal file
12
NzbDrone.Common/Messaging/Events/CommandCompletedEvent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace NzbDrone.Common.Messaging.Events
|
||||
{
|
||||
public class CommandCompletedEvent : IEvent
|
||||
{
|
||||
public ICommand Command { get; private set; }
|
||||
|
||||
public CommandCompletedEvent(ICommand command)
|
||||
{
|
||||
Command = command;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user