mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
parent
492b114510
commit
0f2bba0615
42 changed files with 560 additions and 74 deletions
|
@ -40,8 +40,13 @@ namespace NzbDrone.Core.Notifications
|
|||
public abstract string Link { get; }
|
||||
|
||||
public abstract void OnGrab(string message);
|
||||
public abstract void OnDownload(DownloadMessage message);
|
||||
public abstract void AfterRename(Series series);
|
||||
public abstract void OnDownload(DownloadMessage message);
|
||||
public abstract void OnRename(Series series);
|
||||
|
||||
public virtual bool SupportsOnGrab { get { return true; } }
|
||||
public virtual bool SupportsOnDownload { get { return true; } }
|
||||
public virtual bool SupportsOnUpgrade { get { return true; } }
|
||||
public virtual bool SupportsOnRename { get { return true; } }
|
||||
|
||||
protected TSettings Settings
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue