using System.Collections.Generic; namespace NzbDrone.Core.Indexers.Newznab { public class NewznabCapabilities { public int DefaultPageSize { get; set; } public int MaxPageSize { get; set; } public string[] SupportedSearchParameters { get; set; } public string[] SupportedMovieSearchParameters { get; set; } public bool SupportsAggregateIdSearch { get; set; } public string TextSearchEngine { get; set; } public string MovieTextSearchEngine { get; set; } public List Categories { get; set; } public NewznabCapabilities() { DefaultPageSize = 100; MaxPageSize = 100; SupportedSearchParameters = new[] { "q" }; SupportedMovieSearchParameters = new[] { "q", "imdbid", "imdbtitle", "imdbyear" }; SupportsAggregateIdSearch = false; TextSearchEngine = "sphinx"; // This should remain 'sphinx' for older newznab installs MovieTextSearchEngine = "sphinx"; // This should remain 'sphinx' for older newznab installs Categories = new List(); } } public class NewznabCategory { public int Id { get; set; } public string Name { get; set; } public string Description { get; set; } public List Subcategories { get; set; } } }