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

14 lines
323 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 Command { get; private set; }
2013-08-28 00:54:26 +00:00
public CommandExecutedEvent(TrackedCommand command)
2013-08-28 00:54:26 +00:00
{
Command = command;
}
}
}