1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 08:22:35 +01:00
Sonarr/NzbDrone.Common/Messaging/Events/CommandStartedEvent.cs

12 lines
266 B
C#
Raw Normal View History

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