mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
14 lines
321 B
C#
14 lines
321 B
C#
using NzbDrone.Common.Messaging.Tracking;
|
|
|
|
namespace NzbDrone.Common.Messaging.Events
|
|
{
|
|
public class CommandStartedEvent : IEvent
|
|
{
|
|
public TrackedCommand Command { get; private set; }
|
|
|
|
public CommandStartedEvent(TrackedCommand command)
|
|
{
|
|
Command = command;
|
|
}
|
|
}
|
|
} |