1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-16 16:04:08 +01:00
Radarr/NzbDrone.Core/IndexerSearch/Definitions/SeasonSearchCriteria.cs

12 lines
312 B
C#
Raw Normal View History

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