1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/src/NzbDrone.Core/Notifications/INotification.cs

15 lines
323 B
C#
Raw Normal View History

using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Tv;
2013-05-20 02:17:32 +03:00
namespace NzbDrone.Core.Notifications
{
public interface INotification : IProvider
2013-05-20 02:17:32 +03:00
{
string Link { get; }
2013-05-20 02:17:32 +03:00
void OnGrab(string message);
void OnDownload(DownloadMessage message);
2013-05-20 02:17:32 +03:00
void AfterRename(Series series);
}
}