mirror of
https://github.com/Radarr/Radarr
synced 2025-12-16 21:36:11 +01:00
20 lines
No EOL
536 B
C#
20 lines
No EOL
536 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
|
|
namespace NzbDrone.Core.Notifications
|
|
{
|
|
public interface INotificationRepository : IProviderRepository<NotificationDefinition>
|
|
{
|
|
|
|
}
|
|
|
|
public class NotificationRepository : ProviderRepository<NotificationDefinition>, INotificationRepository
|
|
{
|
|
public NotificationRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
}
|
|
} |