mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-25 22:36:59 -04:00
16 lines
393 B
C#
16 lines
393 B
C#
using NzbDrone.Common.Messaging;
|
|
using NzbDrone.Core.Download.TrackedDownloads;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public class DownloadCanBeRemovedEvent : IEvent
|
|
{
|
|
public TrackedDownload TrackedDownload { get; private set; }
|
|
|
|
public DownloadCanBeRemovedEvent(TrackedDownload trackedDownload)
|
|
{
|
|
TrackedDownload = trackedDownload;
|
|
}
|
|
}
|
|
}
|