Radarr/src/NzbDrone.Core/Download/DownloadCompletedEvent.cs

18 lines
472 B
C#

using NzbDrone.Common.Messaging;
using NzbDrone.Core.Download.TrackedDownloads;
namespace NzbDrone.Core.Download
{
public class DownloadCompletedEvent : IEvent
{
public TrackedDownload TrackedDownload { get; private set; }
public int MovieId { get; set; }
public DownloadCompletedEvent(TrackedDownload trackedDownload, int movieId)
{
TrackedDownload = trackedDownload;
MovieId = movieId;
}
}
}