1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-31 03:11:07 +02:00
Sonarr/src/NzbDrone.Core/Notifications/INotification.cs
Mark McDowall 27da44ba45 Converted notifications to thingi provider
Fixed: Issues creating and saving Connects
2013-10-12 12:05:37 -07:00

15 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);
}
}