2010-10-07 20:35:04 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
2010-10-20 18:49:23 -07:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2010-10-07 20:35:04 -07:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
{
|
|
|
|
public interface INotificationProvider
|
|
|
|
{
|
|
|
|
void Register(ProgressNotification notification);
|
|
|
|
void Register(BasicNotification notification);
|
|
|
|
|
|
|
|
List<BasicNotification> BasicNotifications { get; }
|
2010-10-11 19:49:27 -07:00
|
|
|
List<ProgressNotification> GetProgressNotifications { get; }
|
2010-10-07 20:35:04 -07:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Dismisses a notification based on its ID.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="notificationId">notification id.</param>
|
|
|
|
void Dismiss(Guid notificationId);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|