mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-23 22:25:56 -04:00
a83b521766
Closes #363
25 lines
848 B
C#
25 lines
848 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Download.TrackedDownloads;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class DownloadCompletedEvent : IEvent
|
|
{
|
|
public TrackedDownload TrackedDownload { get; private set; }
|
|
public int SeriesId { get; private set; }
|
|
public List<EpisodeFile> EpisodeFiles { get; private set; }
|
|
public GrabbedReleaseInfo Release { get; private set; }
|
|
|
|
public DownloadCompletedEvent(TrackedDownload trackedDownload, int seriesId, List<EpisodeFile> episodeFiles, GrabbedReleaseInfo release)
|
|
{
|
|
TrackedDownload = trackedDownload;
|
|
SeriesId = seriesId;
|
|
EpisodeFiles = episodeFiles;
|
|
Release = release;
|
|
}
|
|
}
|
|
}
|