mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-19 22:04:56 -04:00
15 lines
407 B
C#
15 lines
407 B
C#
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; }
|
|
}
|
|
}
|