1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-12 17:45:13 +00:00
Radarr/NzbDrone.Core/Messaging/Events/CommandExecutedEvent.cs

15 lines
349 B
C#
Raw Normal View History

2013-09-11 06:33:47 +00:00
using NzbDrone.Common.Messaging;
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Messaging.Events
{
public class CommandExecutedEvent : IEvent
{
public Command Command { get; private set; }
public CommandExecutedEvent(Command trackedCommand)
{
Command = trackedCommand;
}
}
}