more project cleanup.

This commit is contained in:
kay.one
2013-04-07 11:13:09 -07:00
parent d41f26a4e7
commit 89f261eddf
6 changed files with 10 additions and 12 deletions
@@ -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;
}
}
}