Files
Prowlarr-Prowlarr/src/NzbDrone.Core/IndexerSearch/Definitions/DailyEpisodeSearchCriteria.cs
Mark McDowall 52da5b643d Using string for airdate instead of DateTime in models to prevent timezone issues
Fixed: Manual search air by date shows can now be sent to download client
2013-10-22 22:17:02 -07:00

14 lines
323 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}", SceneTitle, AirDate);
}
}
}