mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
15 lines
400 B
C#
15 lines
400 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.ThingiProvider;
|
|
|
|
namespace NzbDrone.Core.Applications
|
|
{
|
|
public interface IApplication : IProvider
|
|
{
|
|
void AddIndexer(IndexerDefinition indexer);
|
|
void UpdateIndexer(IndexerDefinition indexer);
|
|
void RemoveIndexer(int indexerId);
|
|
List<AppIndexerMap> GetIndexerMappings();
|
|
}
|
|
}
|