mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-27 23:16:58 -04:00
15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch.Definitions
|
|
{
|
|
public class SpecialEpisodeSearchCriteria : SearchCriteriaBase
|
|
{
|
|
public string[] EpisodeQueryTitles { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("[{0} : {1}]", Series.Title, string.Join(",", EpisodeQueryTitles));
|
|
}
|
|
}
|
|
}
|