mirror of https://github.com/lidarr/Lidarr
14 lines
353 B
C#
14 lines
353 B
C#
using NzbDrone.Common.Messaging.Tracking;
|
|
|
|
namespace NzbDrone.Common.Messaging.Events
|
|
{
|
|
public class CommandCompletedEvent : IEvent
|
|
{
|
|
public TrackedCommand TrackedCommand { get; private set; }
|
|
|
|
public CommandCompletedEvent(TrackedCommand trackedCommand)
|
|
{
|
|
TrackedCommand = trackedCommand;
|
|
}
|
|
}
|
|
} |