mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
more project cleanup.
This commit is contained in:
@@ -5,6 +5,7 @@ using NLog;
|
||||
using NzbDrone.Common;
|
||||
using NzbDrone.Common.Eventing;
|
||||
using NzbDrone.Core.Download;
|
||||
using NzbDrone.Core.MediaFiles.Events;
|
||||
using NzbDrone.Core.Organizer;
|
||||
using NzbDrone.Core.Tv;
|
||||
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
using NzbDrone.Common.Eventing;
|
||||
using NzbDrone.Core.Model;
|
||||
|
||||
namespace NzbDrone.Core.MediaFiles.Events
|
||||
{
|
||||
public class EpisodeDownloadedEvent : IEvent
|
||||
{
|
||||
public EpisodeParseResult ParseResult { get; private set; }
|
||||
|
||||
public EpisodeDownloadedEvent(EpisodeParseResult parseResult)
|
||||
{
|
||||
ParseResult = parseResult;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user