Added CommandStartedEvent

This commit is contained in:
Mark McDowall 2013-08-27 17:54:26 -07:00
commit a86c131761
3 changed files with 15 additions and 4 deletions

View file

@ -1,10 +1,10 @@
namespace NzbDrone.Common.Messaging
{
public class CommandExecutedEvent : IEvent
public class CommandStartedEvent : IEvent
{
public ICommand Command { get; private set; }
public CommandExecutedEvent(ICommand command)
public CommandStartedEvent(ICommand command)
{
Command = command;
}