mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-26 23:06:43 -04:00
21 lines
574 B
C#
21 lines
574 B
C#
using NzbDrone.Core.Datastore;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
namespace NzbDrone.Core.RemotePathMappings
|
|
{
|
|
public interface IRemotePathMappingRepository : IBasicRepository<RemotePathMapping>
|
|
{
|
|
|
|
}
|
|
|
|
public class RemotePathMappingRepository : BasicRepository<RemotePathMapping>, IRemotePathMappingRepository
|
|
{
|
|
|
|
public RemotePathMappingRepository(IMainDatabase database, IEventAggregator eventAggregator)
|
|
: base(database, eventAggregator)
|
|
{
|
|
}
|
|
|
|
protected override bool PublishModelEvents => true;
|
|
}
|
|
} |