mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
18 lines
418 B
C#
18 lines
418 B
C#
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public interface INotification
|
|
{
|
|
string Name { get; }
|
|
string ImplementationName { get; }
|
|
string Link { get; }
|
|
|
|
NotificationDefinition InstanceDefinition { get; set; }
|
|
|
|
void OnGrab(string message);
|
|
void OnDownload(string message, Series series);
|
|
void AfterRename(Series series);
|
|
}
|
|
}
|