1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-29 02:57:15 +02:00
Sonarr/src/NzbDrone.Core/Indexers/IndexerRepository.cs

21 lines
502 B
C#
Raw Normal View History

2013-09-22 23:06:11 +03:00
using NzbDrone.Core.Datastore;
using NzbDrone.Core.Messaging.Events;
2013-09-22 23:06:11 +03:00
using NzbDrone.Core.ThingiProvider;
2013-09-11 09:33:47 +03:00
2013-02-21 10:07:34 +03:00
namespace NzbDrone.Core.Indexers
{
2013-09-22 23:06:11 +03:00
public interface IIndexerRepository : IProviderRepository<IndexerDefinition>
2013-02-21 10:07:34 +03:00
{
2013-09-22 23:06:11 +03:00
2013-02-21 10:07:34 +03:00
}
2013-09-22 23:06:11 +03:00
public class IndexerRepository : ProviderRepository<IndexerDefinition>, IIndexerRepository
2013-02-21 10:07:34 +03:00
{
public IndexerRepository(IDatabase database, IEventAggregator eventAggregator)
: base(database, eventAggregator)
2013-02-21 10:07:34 +03:00
{
}
}
}