Lidarr/src/NzbDrone.Core/Notifications/INotification.cs

21 lines
597 B
C#
Raw Normal View History

using NzbDrone.Core.ThingiProvider;
using NzbDrone.Core.Music;
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(GrabMessage grabMessage);
void OnDownload(TrackDownloadMessage message);
void OnAlbumDownload(AlbumDownloadMessage message);
void OnRename(Artist artist);
bool SupportsOnGrab { get; }
bool SupportsOnDownload { get; }
bool SupportsOnAlbumDownload { get; }
bool SupportsOnUpgrade { get; }
bool SupportsOnRename { get; }
2013-05-19 23:17:32 +00:00
}
}