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
|
|
|
|
{
|
|
|
|
|
public class CommandCompletedEvent : IEvent
|
|
|
|
|
{
|
2013-08-31 03:39:05 +00:00
|
|
|
|
public TrackedCommand TrackedCommand { get; private set; }
|
2013-05-11 23:38:41 +00:00
|
|
|
|
|
2013-08-31 03:39:05 +00:00
|
|
|
|
public CommandCompletedEvent(TrackedCommand trackedCommand)
|
2013-05-11 23:38:41 +00:00
|
|
|
|
{
|
2013-08-31 03:39:05 +00:00
|
|
|
|
TrackedCommand = trackedCommand;
|
2013-05-11 23:38:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|