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,12 +4,16 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.UI.WebControls;
namespace Jackett
{
public class Freshon : IndexerInterface
{
public string DisplayName { get; private set; }
public Task<ConfigurationData> GetConfigurationForSetup()
{
throw new NotImplementedException();
@@ -36,5 +40,16 @@ namespace Jackett
{
throw new NotImplementedException();
}
public string DisplayDescription
{
get { throw new NotImplementedException(); }
}
public Uri SitLink
{
get { throw new NotImplementedException(); }
}
}
}