1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-04 19:00:02 +00:00
Radarr/NzbDrone.Common/Messaging/Events/CommandExecutedEvent.cs

12 lines
268 B
C#
Raw Normal View History

namespace NzbDrone.Common.Messaging.Events
2013-08-27 17:54:26 -07:00
{
public class CommandExecutedEvent : IEvent
{
public ICommand Command { get; private set; }
public CommandExecutedEvent(ICommand command)
{
Command = command;
}
}
}