mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
12 lines
266 B
C#
12 lines
266 B
C#
namespace NzbDrone.Common.Messaging.Events
|
|
{
|
|
public class CommandStartedEvent : IEvent
|
|
{
|
|
public ICommand Command { get; private set; }
|
|
|
|
public CommandStartedEvent(ICommand command)
|
|
{
|
|
Command = command;
|
|
}
|
|
}
|
|
} |