mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-18 23:48:35 +02:00
27da44ba45
Fixed: Issues creating and saving Connects
20 lines
536 B
C#
20 lines
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)
|
|
{
|
|
}
|
|
}
|
|
} |