mirror of
https://github.com/Lidarr/Lidarr
synced 2026-03-05 12:04:18 +01:00
21 lines
No EOL
574 B
C#
21 lines
No EOL
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;
|
|
}
|
|
} |