2011-08-28 05:45:36 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Model.Search
|
|
|
|
|
{
|
|
|
|
|
public class SearchModel
|
|
|
|
|
{
|
|
|
|
|
public string SeriesTitle { get; set; }
|
|
|
|
|
public int EpisodeNumber { get; set; }
|
|
|
|
|
public int SeasonNumber { get; set; }
|
2011-09-01 06:58:54 +00:00
|
|
|
|
public int EpisodePrefix { get; set; }
|
2011-08-28 05:45:36 +00:00
|
|
|
|
public DateTime AirDate { get; set; }
|
|
|
|
|
public SearchType SearchType { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|