Implement BakaBT, change Console to not build as x64, Add test framework

This commit is contained in:
KZ
2015-07-26 00:51:55 +01:00
parent 2673d5a796
commit a2ce89d2da
25 changed files with 2395 additions and 70 deletions

View File

@@ -11,18 +11,18 @@ namespace Jackett.Models
{
public class TorznabQuery
{
public string QueryType { get; private set; }
public string[] Categories { get; private set; }
public int Extended { get; private set; }
public string ApiKey { get; private set; }
public int Limit { get; private set; }
public int Offset { get; private set; }
public int RageID { get; private set; }
public string QueryType { get; set; }
public string[] Categories { get; set; }
public int Extended { get; set; }
public string ApiKey { get; set; }
public int Limit { get; set; }
public int Offset { get; set; }
public int RageID { get; set; }
public int Season { get; private set; }
public string Episode { get; private set; }
public string SearchTerm { get; private set; }
public string SanitizedSearchTerm { get; private set; }
public int Season { get; set; }
public string Episode { get; set; }
public string SearchTerm { get; set; }
public string SanitizedSearchTerm { get; set; }
public string GetEpisodeSearchString()
{