mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
12 lines
259 B
C#
12 lines
259 B
C#
namespace NzbDrone.Common.Messaging
|
|
{
|
|
public class CommandStartedEvent : IEvent
|
|
{
|
|
public ICommand Command { get; private set; }
|
|
|
|
public CommandStartedEvent(ICommand command)
|
|
{
|
|
Command = command;
|
|
}
|
|
}
|
|
} |