mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 19:50:15 -07:00
14 lines
329 B
C#
14 lines
329 B
C#
using NzbDrone.Core.ThingiProvider;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public interface INotification : IProvider
|
|
{
|
|
string Link { get; }
|
|
|
|
void OnGrab(string message);
|
|
void OnDownload(string message, Series series);
|
|
void AfterRename(Series series);
|
|
}
|
|
}
|