mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-24 22:55:21 -04:00
a86aa4c5d3
(cherry picked from commit 5fdc8514da7c7ad98192f2ecb2415b3a7b5d0d05)
20 lines
630 B
C#
20 lines
630 B
C#
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public interface INotification : IProvider
|
|
{
|
|
string Link { get; }
|
|
|
|
void OnGrab(GrabMessage grabMessage);
|
|
void OnHealthIssue(HealthCheck.HealthCheck healthCheck);
|
|
void OnHealthRestored(HealthCheck.HealthCheck previousCheck);
|
|
void OnApplicationUpdate(ApplicationUpdateMessage updateMessage);
|
|
void ProcessQueue();
|
|
bool SupportsOnGrab { get; }
|
|
bool SupportsOnHealthIssue { get; }
|
|
bool SupportsOnHealthRestored { get; }
|
|
bool SupportsOnApplicationUpdate { get; }
|
|
}
|
|
}
|