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