2013-08-31 03:08:19 +00:00
|
|
|
|
using NzbDrone.Common.Messaging.Tracking;
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
2013-08-31 03:08:19 +00:00
|
|
|
|
public TrackedCommand Command { get; private set; }
|
2013-05-11 23:38:41 +00:00
|
|
|
|
|
2013-08-31 03:08:19 +00:00
|
|
|
|
public CommandStartedEvent(TrackedCommand command)
|
2013-05-11 23:38:41 +00:00
|
|
|
|
{
|
|
|
|
|
Command = command;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|