Dynamic indexer type list

This commit is contained in:
zone117x
2015-04-13 08:25:41 -06:00
parent 2fd026b7d4
commit 7b4e6f97d5
13 changed files with 82 additions and 42 deletions

View File

@@ -4,11 +4,17 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.UI.WebControls;
namespace Jackett
{
public interface IndexerInterface
{
string DisplayName { get; }
string DisplayDescription { get; }
Uri SitLink { get; }
// Retrieved for starting setup for the indexer via web API
Task<ConfigurationData> GetConfigurationForSetup();