Lidarr/NzbDrone.Common/Messaging/Events/CommandExecutedEvent.cs

14 lines
351 B
C#
Raw Normal View History

using NzbDrone.Common.Messaging.Tracking;
namespace NzbDrone.Common.Messaging.Events
2013-08-28 00:54:26 +00:00
{
public class CommandExecutedEvent : IEvent
{
public TrackedCommand TrackedCommand { get; private set; }
2013-08-28 00:54:26 +00:00
public CommandExecutedEvent(TrackedCommand trackedCommand)
2013-08-28 00:54:26 +00:00
{
TrackedCommand = trackedCommand;
2013-08-28 00:54:26 +00:00
}
}
}