mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 20:44:00 +02:00
12 lines
266 B
C#
12 lines
266 B
C#
namespace NzbDrone.Common.Messaging.Events
|
|
{
|
|
public class CommandStartedEvent : IEvent
|
|
{
|
|
public ICommand Command { get; private set; }
|
|
|
|
public CommandStartedEvent(ICommand command)
|
|
{
|
|
Command = command;
|
|
}
|
|
}
|
|
} |