Lidarr/NzbDrone.Core/IndexerSearch/Definitions/DailyEpisodeSearchDefinitio...

14 lines
327 B
C#
Raw Normal View History

2013-04-07 07:30:37 +00:00
using System;
namespace NzbDrone.Core.IndexerSearch.Definitions
{
public class DailyEpisodeSearchDefinition : SearchDefinitionBase
{
public DateTime Airtime { get; set; }
public override string ToString()
{
return string.Format("[{0} : {1}", SceneTitle, Airtime);
}
}
}