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