1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 16:31:43 +02:00
Radarr/NzbDrone.Core/Providers/NotificationProvider.cs
2012-01-22 23:43:54 -08:00

27 lines
697 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Model.Notification;
namespace NzbDrone.Core.Providers
{
public class NotificationProvider
{
private static ProgressNotification _currentNotification;
public virtual ProgressNotification GetCurrent()
{
if (_currentNotification == null || _currentNotification.CompletedTime < DateTime.Now.AddSeconds(-6))
{
return null;
}
return _currentNotification;
}
public virtual void Register(ProgressNotification notification)
{
_currentNotification = notification;
}
}
}