mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-22 22:34:53 -04:00
Lots of workings to search processing, UI Categories
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace NzbDrone.Core.IndexerSearch.Definitions
|
||||
{
|
||||
public class TvSearchCriteria : SearchCriteriaBase
|
||||
{
|
||||
public int? Season { get; set; }
|
||||
public int? Ep { get; set; }
|
||||
|
||||
public string ImdbId { get; set; }
|
||||
public int? TvdbId { get; set; }
|
||||
public int? RId { get; set; }
|
||||
public int? TvMazeId { get; set; }
|
||||
public int? TraktId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user