mirror of https://github.com/Radarr/Radarr
12 lines
263 B
C#
12 lines
263 B
C#
|
namespace NzbDrone.Common.Messaging
|
|||
|
{
|
|||
|
public class CommandCompletedEvent : IEvent
|
|||
|
{
|
|||
|
public ICommand Command { get; private set; }
|
|||
|
|
|||
|
public CommandCompletedEvent(ICommand command)
|
|||
|
{
|
|||
|
Command = command;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|