mirror of
https://github.com/Readarr/Readarr
synced 2025-12-17 22:03:05 +01: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;
|
|
}
|
|
}
|
|
} |