mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
c8a8fb4d62
Added basic support for file scan Major redactor of ReportTitle/File parsing Updated Ninject/Ninject.MVC Removed dependency from Microsoft.Web.Administration reactored Episode repository structure
23 lines
646 B
C#
23 lines
646 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public interface INotificationProvider
|
|
{
|
|
void Register(ProgressNotification notification);
|
|
void Register(BasicNotification notification);
|
|
|
|
List<BasicNotification> BasicNotifications { get; }
|
|
List<ProgressNotification> GetProgressNotifications { get; }
|
|
|
|
/// <summary>
|
|
/// Dismisses a notification based on its ID.
|
|
/// </summary>
|
|
/// <param name="notificationId">notification id.</param>
|
|
void Dismiss(Guid notificationId);
|
|
|
|
}
|
|
}
|