Sonarr/NzbDrone.Core/IndexerSearch/Definitions/SingleEpisodeSearchDefiniti...

14 lines
461 B
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
namespace NzbDrone.Core.IndexerSearch.Definitions
{
public class SingleEpisodeSearchDefinition : SearchDefinitionBase
{
//TODO make sure these are populated with scene if required
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);
}
}
}