sonarr-repo-only/NzbDrone.Common/Messaging/Events/CommandStartedEvent.cs

12 lines
266 B
C#

namespace NzbDrone.Common.Messaging.Events
{
public class CommandStartedEvent : IEvent
{
public ICommand Command { get; private set; }
public CommandStartedEvent(ICommand command)
{
Command = command;
}
}
}