mirror of
https://github.com/Sonarr/Sonarr
synced 2026-04-24 14:11:55 +02:00
17 lines
No EOL
478 B
C#
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;
|
|
}
|
|
}
|
|
} |