mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +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);
|
|
}
|
|
}
|