using NzbDrone.Core.Datastore; using NzbDrone.Core.Messaging.Events; namespace NzbDrone.Core.RemotePathMappings { public interface IRemotePathMappingRepository : IBasicRepository { } public class RemotePathMappingRepository : BasicRepository, IRemotePathMappingRepository { public RemotePathMappingRepository(IMainDatabase database, IEventAggregator eventAggregator) : base(database, eventAggregator) { } protected override bool PublishModelEvents => true; } }