mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 18:57:39 -07:00
Removed single search method in indexer base.
This commit is contained in:
parent
a9c88bb6ab
commit
30497357b4
14 changed files with 249 additions and 230 deletions
|
@ -1,16 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model.Search
|
||||
{
|
||||
public class SearchModel
|
||||
{
|
||||
public string SeriesTitle { get; set; }
|
||||
public int EpisodeNumber { get; set; }
|
||||
public int SeasonNumber { get; set; }
|
||||
public int EpisodePrefix { get; set; }
|
||||
public DateTime AirDate { get; set; }
|
||||
public SearchType SearchType { get; set; }
|
||||
}
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace NzbDrone.Core.Model.Search
|
||||
{
|
||||
public enum SearchType
|
||||
{
|
||||
EpisodeSearch = 0,
|
||||
DailySearch = 1,
|
||||
PartialSeasonSearch = 2,
|
||||
SeasonSearch = 3
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue