Implement Avistaz

This commit is contained in:
KZ
2015-08-23 21:28:21 +01:00
parent f47a5ef13c
commit ccd0e65e66
7 changed files with 187 additions and 111 deletions

View File

@@ -0,0 +1,15 @@
using Jackett.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Jackett
{
public class ManualSearchResult
{
public List<TrackerCacheResult> Results { get; set; }
public List<string> Indexers { get; set; }
}
}