mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
23 lines
646 B
C#
23 lines
646 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Entities.Notification;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface INotificationProvider
|
|
{
|
|
void Register(ProgressNotification notification);
|
|
void Register(BasicNotification notification);
|
|
|
|
List<BasicNotification> BasicNotifications { get; }
|
|
List<ProgressNotification> ProgressNotifications { get; }
|
|
|
|
/// <summary>
|
|
/// Dismisses a notification based on its ID.
|
|
/// </summary>
|
|
/// <param name="notificationId">notification id.</param>
|
|
void Dismiss(Guid notificationId);
|
|
|
|
}
|
|
}
|