mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-27 22:57:09 -04:00
97370cc8b3
New: connect to omgwtfnzbs over https Fixed: No results found response for omgwtfnzbs
14 lines
336 B
C#
14 lines
336 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch.Definitions
|
|
{
|
|
public class DailyEpisodeSearchCriteria : SearchCriteriaBase
|
|
{
|
|
public DateTime AirDate { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("[{0} : {1:yyyy-MM-dd}", Series.Title, AirDate);
|
|
}
|
|
}
|
|
} |