mirror of https://github.com/lidarr/Lidarr
14 lines
327 B
C#
14 lines
327 B
C#
|
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);
|
||
|
}
|
||
|
}
|
||
|
}
|