mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-29 02:55:38 +00:00
14 lines
No EOL
321 B
C#
14 lines
No EOL
321 B
C#
using NzbDrone.Common.Messaging.Tracking;
|
|
|
|
namespace NzbDrone.Common.Messaging.Events
|
|
{
|
|
public class CommandStartedEvent : IEvent
|
|
{
|
|
public TrackedCommand Command { get; private set; }
|
|
|
|
public CommandStartedEvent(TrackedCommand command)
|
|
{
|
|
Command = command;
|
|
}
|
|
}
|
|
} |