mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
14 lines
323 B
C#
14 lines
323 B
C#
using System;
|
|
|
|
namespace NzbDrone.Core.IndexerSearch.Definitions
|
|
{
|
|
public class DailyEpisodeSearchCriteria : SearchCriteriaBase
|
|
{
|
|
public DateTime Airtime { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("[{0} : {1}", SceneTitle, Airtime);
|
|
}
|
|
}
|
|
} |