mirror of https://github.com/Sonarr/Sonarr
13 lines
389 B
C#
13 lines
389 B
C#
namespace NzbDrone.Core.IndexerSearch.Definitions
|
|
{
|
|
public class SingleEpisodeSearchCriteria : SearchCriteriaBase
|
|
{
|
|
public int EpisodeNumber { get; set; }
|
|
public int SeasonNumber { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("[{0} : S{1:00}E{2:00} ]", SceneTitle, SeasonNumber, EpisodeNumber);
|
|
}
|
|
}
|
|
} |