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

17 lines
No EOL
478 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 SeriesId { get; set; }
public DownloadCompletedEvent(TrackedDownload trackedDownload, int seriesId)
{
TrackedDownload = trackedDownload;
SeriesId = seriesId;
}
}
}