mirror of https://github.com/Radarr/Radarr
20 lines
580 B
C#
20 lines
580 B
C#
|
using System.Collections.Generic;
|
|||
|
using NLog;
|
|||
|
using NzbDrone.Core.ThingiProvider;
|
|||
|
|
|||
|
namespace NzbDrone.Core.Notifications
|
|||
|
{
|
|||
|
public interface INotificationFactory : IProviderFactory<INotification, NotificationDefinition>
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
public class NotificationFactory : ProviderFactory<INotification, NotificationDefinition>, INotificationFactory
|
|||
|
{
|
|||
|
public NotificationFactory(INotificationRepository providerRepository, IEnumerable<INotification> providers, Logger logger)
|
|||
|
: base(providerRepository, providers, logger)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
}
|