1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 19:41:27 +00:00
Sonarr/NzbDrone.Common/Messaging/Events/CommandStartedEvent.cs
2013-09-01 21:12:45 -07:00

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