2013-04-07 18:13:09 +00:00
|
|
|
|
using NzbDrone.Common.Eventing;
|
2013-02-24 23:47:57 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
|
2013-04-07 18:13:09 +00:00
|
|
|
|
namespace NzbDrone.Core.MediaFiles.Events
|
2013-02-24 23:47:57 +00:00
|
|
|
|
{
|
|
|
|
|
public class EpisodeDownloadedEvent : IEvent
|
|
|
|
|
{
|
2013-04-07 19:01:24 +00:00
|
|
|
|
public FileNameParseResult ParseResult { get; private set; }
|
2013-02-24 23:47:57 +00:00
|
|
|
|
|
2013-04-07 19:01:24 +00:00
|
|
|
|
public EpisodeDownloadedEvent(FileNameParseResult parseResult)
|
2013-02-24 23:47:57 +00:00
|
|
|
|
{
|
|
|
|
|
ParseResult = parseResult;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|