mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
95d93dfa09
Fixes: #277 (cherry picked from commit 3ffcf114682f9b1730f54706ecbf1bf237206bb1)
18 lines
476 B
C#
18 lines
476 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 AuthorId { get; set; }
|
|
|
|
public DownloadCompletedEvent(TrackedDownload trackedDownload, int authorId)
|
|
{
|
|
TrackedDownload = trackedDownload;
|
|
AuthorId = authorId;
|
|
}
|
|
}
|
|
}
|