mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
ba6ba06d9b
Fixes RADARR-Z Fixes RADARR-1E Fixes #4379
18 lines
472 B
C#
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;
|
|
}
|
|
}
|
|
}
|