1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/src/NzbDrone.Core/Notifications/NotificationRepository.cs

20 lines
536 B
C#
Raw Normal View History

using NzbDrone.Core.Datastore;
using NzbDrone.Core.Messaging.Events;
using NzbDrone.Core.ThingiProvider;
2013-09-11 09:33:47 +03:00
2013-05-20 02:17:32 +03:00
namespace NzbDrone.Core.Notifications
{
public interface INotificationRepository : IProviderRepository<NotificationDefinition>
2013-05-20 02:17:32 +03:00
{
2013-05-20 02:17:32 +03:00
}
public class NotificationRepository : ProviderRepository<NotificationDefinition>, INotificationRepository
2013-05-20 02:17:32 +03:00
{
public NotificationRepository(IDatabase database, IEventAggregator eventAggregator)
: base(database, eventAggregator)
2013-05-20 02:17:32 +03:00
{
}
}
}