2013-04-07 07:30:37 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.IndexerSearch.Definitions
|
|
|
|
{
|
2013-06-06 14:42:23 +00:00
|
|
|
public class DailyEpisodeSearchCriteria : SearchCriteriaBase
|
2013-04-07 07:30:37 +00:00
|
|
|
{
|
2013-10-23 05:17:02 +00:00
|
|
|
public DateTime AirDate { get; set; }
|
2013-04-07 07:30:37 +00:00
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
{
|
2014-09-28 01:39:26 +00:00
|
|
|
return string.Format("[{0} : {1:yyyy-MM-dd}", Series.Title, AirDate);
|
2013-04-07 07:30:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|