|
|
|
@ -169,5 +169,35 @@ namespace MediaBrowser.Model.Querying
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The max official rating.</value>
|
|
|
|
|
public string MaxOfficialRating { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ItemQuery"/> class.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public ItemQuery()
|
|
|
|
|
{
|
|
|
|
|
SortBy = new string[] {};
|
|
|
|
|
|
|
|
|
|
Filters = new ItemFilter[] {};
|
|
|
|
|
|
|
|
|
|
Fields = new ItemFields[] {};
|
|
|
|
|
|
|
|
|
|
MediaTypes = new string[] {};
|
|
|
|
|
|
|
|
|
|
VideoFormats = new VideoFormat[] { };
|
|
|
|
|
|
|
|
|
|
VideoTypes = new VideoType[] {};
|
|
|
|
|
|
|
|
|
|
Genres = new string[] { };
|
|
|
|
|
Studios = new string[] { };
|
|
|
|
|
IncludeItemTypes = new string[] { };
|
|
|
|
|
ExcludeItemTypes = new string[] { };
|
|
|
|
|
Years = new int[] { };
|
|
|
|
|
PersonTypes = new string[] { };
|
|
|
|
|
Ids = new string[] { };
|
|
|
|
|
|
|
|
|
|
ImageTypes = new ImageType[] { };
|
|
|
|
|
AirDays = new DayOfWeek[] { };
|
|
|
|
|
SeriesStatuses = new SeriesStatus[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|