1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00
Files
Sonarr/NzbDrone.Common/Messaging/Events/CommandStartedEvent.cs
T

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;
}
}
}