1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-27 22:57:09 -04:00
Files
Radarr/src/NzbDrone.Core/IndexerSearch/Definitions/DailyEpisodeSearchCriteria.cs
T
Mark McDowall 97370cc8b3 omgwtfnzbs fixes
New: connect to omgwtfnzbs over https
Fixed: No results found response for omgwtfnzbs
2014-09-27 18:39:33 -07:00

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);
}
}
}