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