1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 02:55:38 +00:00
Lidarr/NzbDrone.Common/Messaging/Events/CommandStartedEvent.cs

14 lines
No EOL
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;
}
}
}