1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00
Files
Radarr/NzbDrone.Common/Messaging/Events/CommandExecutedEvent.cs
T

14 lines
323 B
C#

using NzbDrone.Common.Messaging.Tracking;
namespace NzbDrone.Common.Messaging.Events
{
public class CommandExecutedEvent : IEvent
{
public TrackedCommand Command { get; private set; }
public CommandExecutedEvent(TrackedCommand command)
{
Command = command;
}
}
}