Files
Prowlarr-Prowlarr/src/NzbDrone.Core/Applications/IApplication.cs
2021-08-14 23:50:47 -04:00

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();
}
}