mirror of https://github.com/lidarr/Lidarr
12 lines
316 B
C#
12 lines
316 B
C#
|
namespace NzbDrone.Core.IndexerSearch.Definitions
|
||
|
{
|
||
|
public class SeasonSearchDefinition : SearchDefinitionBase
|
||
|
{
|
||
|
public int SeasonNumber { get; set; }
|
||
|
|
||
|
public override string ToString()
|
||
|
{
|
||
|
return string.Format("[{0} : S{1:00}]", SceneTitle, SeasonNumber);
|
||
|
}
|
||
|
}
|
||
|
}
|