2013-08-28 06:51:42 +00:00
|
|
|
|
namespace NzbDrone.Common.Messaging.Events
|
2013-05-11 23:38:41 +00:00
|
|
|
|
{
|
2013-08-28 00:54:26 +00:00
|
|
|
|
public class CommandStartedEvent : IEvent
|
2013-05-11 23:38:41 +00:00
|
|
|
|
{
|
|
|
|
|
public ICommand Command { get; private set; }
|
|
|
|
|
|
2013-08-28 00:54:26 +00:00
|
|
|
|
public CommandStartedEvent(ICommand command)
|
2013-05-11 23:38:41 +00:00
|
|
|
|
{
|
|
|
|
|
Command = command;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|