You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
486 B
19 lines
486 B
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; }
|
|
}
|
|
}
|