mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
19 lines
486 B
C#
19 lines
486 B
C#
using NzbDrone.Core.ThingiProvider;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public interface INotification : IProvider
|
|
{
|
|
string Link { get; }
|
|
|
|
void OnGrab(GrabMessage grabMessage);
|
|
void OnDownload(DownloadMessage message);
|
|
void OnRename(Series series);
|
|
bool SupportsOnGrab { get; }
|
|
bool SupportsOnDownload { get; }
|
|
bool SupportsOnUpgrade { get; }
|
|
bool SupportsOnRename { get; }
|
|
}
|
|
}
|