1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-31 19:41:27 +00:00
Sonarr/NzbDrone.Common/Messaging/Events/CommandExecutedEvent.cs

12 lines
268 B
C#
Raw Normal View History

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