mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Commands return immediately and signalr is used to control the UI
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
namespace NzbDrone.Common.Messaging.Events
|
||||
using NzbDrone.Common.Messaging.Tracking;
|
||||
|
||||
namespace NzbDrone.Common.Messaging.Events
|
||||
{
|
||||
public class CommandStartedEvent : IEvent
|
||||
{
|
||||
public ICommand Command { get; private set; }
|
||||
public TrackedCommand Command { get; private set; }
|
||||
|
||||
public CommandStartedEvent(ICommand command)
|
||||
public CommandStartedEvent(TrackedCommand command)
|
||||
{
|
||||
Command = command;
|
||||
}
|
||||
|
Reference in New Issue
Block a user