2013-08-31 05:08:19 +02:00
|
|
|
|
using NzbDrone.Common.Messaging.Tracking;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common.Messaging.Events
|
2013-05-12 01:38:41 +02:00
|
|
|
|
{
|
2013-08-28 02:54:26 +02:00
|
|
|
|
public class CommandStartedEvent : IEvent
|
2013-05-12 01:38:41 +02:00
|
|
|
|
{
|
2013-08-31 05:39:05 +02:00
|
|
|
|
public TrackedCommand TrackedCommand { get; private set; }
|
2013-05-12 01:38:41 +02:00
|
|
|
|
|
2013-08-31 05:39:05 +02:00
|
|
|
|
public CommandStartedEvent(TrackedCommand trackedCommand)
|
2013-05-12 01:38:41 +02:00
|
|
|
|
{
|
2013-08-31 05:39:05 +02:00
|
|
|
|
TrackedCommand = trackedCommand;
|
2013-05-12 01:38:41 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|