1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-29 11:05:44 +00:00
Lidarr/NzbDrone.Core/IndexerSearch/Definitions/SeasonSearchCriteria.cs

12 lines
312 B
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
namespace NzbDrone.Core.IndexerSearch.Definitions
{
public class SeasonSearchCriteria : SearchCriteriaBase
2013-04-07 07:30:37 +00:00
{
public int SeasonNumber { get; set; }
public override string ToString()
{
return string.Format("[{0} : S{1:00}]", SceneTitle, SeasonNumber);
}
}
}