1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/IndexerSearch/Definitions/SeasonSearchDefinition.cs
2013-04-07 00:30:37 -07:00

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);
}
}
}