sonarr-repo-only/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;
}
}
}