Fix class name for AppIndexerMapRepository

pull/2128/head
Bogdan 5 months ago
parent 9561371a47
commit 076a4f2574

@ -10,9 +10,9 @@ namespace NzbDrone.Core.Applications
void DeleteAllForApp(int appId);
}
public class TagRepository : BasicRepository<AppIndexerMap>, IAppIndexerMapRepository
public class AppIndexerMapRepository : BasicRepository<AppIndexerMap>, IAppIndexerMapRepository
{
public TagRepository(IMainDatabase database, IEventAggregator eventAggregator)
public AppIndexerMapRepository(IMainDatabase database, IEventAggregator eventAggregator)
: base(database, eventAggregator)
{
}

Loading…
Cancel
Save