1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-20 21:27:16 +00:00
Sonarr/NzbDrone.Common/Messaging/Events/CommandCompletedEvent.cs

12 lines
270 B
C#
Raw Normal View History

namespace NzbDrone.Common.Messaging.Events
{
public class CommandCompletedEvent : IEvent
{
public ICommand Command { get; private set; }
public CommandCompletedEvent(ICommand command)
{
Command = command;
}
}
}