mirror of
https://github.com/Radarr/Radarr
synced 2025-12-14 12:23:11 +01:00
14 lines
No EOL
323 B
C#
14 lines
No EOL
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;
|
|
}
|
|
}
|
|
} |