mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-17 21:25:39 -04:00
12 lines
312 B
C#
12 lines
312 B
C#
namespace NzbDrone.Core.IndexerSearch.Definitions
|
|
{
|
|
public class SeasonSearchCriteria : SearchCriteriaBase
|
|
{
|
|
public int SeasonNumber { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("[{0} : S{1:00}]", SceneTitle, SeasonNumber);
|
|
}
|
|
}
|
|
} |