Lidarr/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-19 23:17:32 +00:00
namespace NzbDrone.Core.Notifications
{
public interface INotification : IProvider
2013-05-19 23:17:32 +00:00
{
string Link { get; }
2013-05-19 23:17:32 +00:00
void OnGrab(string message);
void OnDownload(DownloadMessage message);
2013-05-19 23:17:32 +00:00
void AfterRename(Series series);
}
}