2013-11-29 16:58:24 +00:00
|
|
|
|
|
2013-11-22 15:33:14 +00:00
|
|
|
|
namespace MediaBrowser.Model.Querying
|
|
|
|
|
{
|
|
|
|
|
public class EpisodeQuery
|
|
|
|
|
{
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
2013-11-30 18:32:39 +00:00
|
|
|
|
public string SeasonId { get; set; }
|
|
|
|
|
|
2013-11-22 15:33:14 +00:00
|
|
|
|
public string SeriesId { get; set; }
|
|
|
|
|
|
2013-11-29 16:58:24 +00:00
|
|
|
|
public bool? IsMissing { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool? IsVirtualUnaired { get; set; }
|
2013-11-22 15:33:14 +00:00
|
|
|
|
|
|
|
|
|
public int? SeasonNumber { get; set; }
|
|
|
|
|
|
|
|
|
|
public ItemFields[] Fields { get; set; }
|
|
|
|
|
|
|
|
|
|
public EpisodeQuery()
|
|
|
|
|
{
|
|
|
|
|
Fields = new ItemFields[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-11-28 18:27:29 +00:00
|
|
|
|
|
|
|
|
|
public class SeasonQuery
|
|
|
|
|
{
|
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
public string SeriesId { get; set; }
|
|
|
|
|
|
2013-11-29 16:58:24 +00:00
|
|
|
|
public bool? IsMissing { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool? IsVirtualUnaired { get; set; }
|
2013-11-28 18:27:29 +00:00
|
|
|
|
|
|
|
|
|
public ItemFields[] Fields { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool? IsSpecialSeason { get; set; }
|
|
|
|
|
|
|
|
|
|
public SeasonQuery()
|
|
|
|
|
{
|
|
|
|
|
Fields = new ItemFields[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-11-22 15:33:14 +00:00
|
|
|
|
}
|