mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
external notifications are now based on Events.
This commit is contained in:
parent
a866c419e1
commit
5fc25b6095
32 changed files with 542 additions and 619 deletions
16
NzbDrone.Core/Download/EpisodeDownloadedEvent.cs
Normal file
16
NzbDrone.Core/Download/EpisodeDownloadedEvent.cs
Normal file
|
@ -0,0 +1,16 @@
|
|||
using System.Linq;
|
||||
using NzbDrone.Common.Eventing;
|
||||
using NzbDrone.Core.Model;
|
||||
|
||||
namespace NzbDrone.Core.Download
|
||||
{
|
||||
public class EpisodeDownloadedEvent : IEvent
|
||||
{
|
||||
public EpisodeParseResult ParseResult { get; private set; }
|
||||
|
||||
public EpisodeDownloadedEvent(EpisodeParseResult parseResult)
|
||||
{
|
||||
ParseResult = parseResult;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue