mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -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
17
NzbDrone.Core/Notifications/NotificationBase.cs
Normal file
17
NzbDrone.Core/Notifications/NotificationBase.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using NLog;
|
||||
using NzbDrone.Core.Tv;
|
||||
|
||||
namespace NzbDrone.Core.Notifications
|
||||
{
|
||||
public abstract class NotificationBase : INotification
|
||||
{
|
||||
public abstract string Name { get; }
|
||||
|
||||
public NotificationDefinition InstanceDefinition { get; set; }
|
||||
|
||||
public abstract void OnGrab(string message);
|
||||
public abstract void OnDownload(string message, Series series);
|
||||
public abstract void AfterRename(Series series);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue