using NzbDrone.Core.Notifications; namespace Sonarr.Api.V3.Notifications { public class NotificationModule : ProviderModuleBase { public static readonly NotificationResourceMapper ResourceMapper = new NotificationResourceMapper(); public NotificationModule(NotificationFactory notificationFactory) : base(notificationFactory, "notification", ResourceMapper) { } } }