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