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