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

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