mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Notifications wired up server sided
This commit is contained in:
parent
3f44339381
commit
e9bf78a97d
57 changed files with 977 additions and 951 deletions
19
NzbDrone.Core/Notifications/INotification.cs
Normal file
19
NzbDrone.Core/Notifications/INotification.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using NzbDrone.Core.Tv;
|
||||
|
||||
namespace NzbDrone.Core.Notifications
|
||||
{
|
||||
public interface INotification
|
||||
{
|
||||
string Name { get; }
|
||||
|
||||
NotificationDefinition InstanceDefinition { get; set; }
|
||||
|
||||
void OnGrab(string message);
|
||||
void OnDownload(string message, Series series);
|
||||
void AfterRename(Series series);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue