|
@@ -73,7 +73,7 @@ namespace MediaBrowser.Model.Querying
|
|
/// </summary>
|
|
/// </summary>
|
|
/// <value>The video types.</value>
|
|
/// <value>The video types.</value>
|
|
public VideoType[] VideoTypes { get; set; }
|
|
public VideoType[] VideoTypes { get; set; }
|
|
-
|
|
|
|
|
|
+
|
|
/// <summary>
|
|
/// <summary>
|
|
/// Whether or not to perform the query recursively
|
|
/// Whether or not to perform the query recursively
|
|
/// </summary>
|
|
/// </summary>
|
|
@@ -103,7 +103,7 @@ namespace MediaBrowser.Model.Querying
|
|
/// </summary>
|
|
/// </summary>
|
|
/// <value>The include item types.</value>
|
|
/// <value>The include item types.</value>
|
|
public string[] IncludeItemTypes { get; set; }
|
|
public string[] IncludeItemTypes { get; set; }
|
|
-
|
|
|
|
|
|
+
|
|
/// <summary>
|
|
/// <summary>
|
|
/// Limit results to items containing specific years
|
|
/// Limit results to items containing specific years
|
|
/// </summary>
|
|
/// </summary>
|
|
@@ -127,7 +127,7 @@ namespace MediaBrowser.Model.Querying
|
|
/// </summary>
|
|
/// </summary>
|
|
/// <value>The index by.</value>
|
|
/// <value>The index by.</value>
|
|
public string SearchTerm { get; set; }
|
|
public string SearchTerm { get; set; }
|
|
-
|
|
|
|
|
|
+
|
|
/// <summary>
|
|
/// <summary>
|
|
/// The dynamic, localized index function name
|
|
/// The dynamic, localized index function name
|
|
/// </summary>
|
|
/// </summary>
|
|
@@ -151,7 +151,7 @@ namespace MediaBrowser.Model.Querying
|
|
/// </summary>
|
|
/// </summary>
|
|
/// <value>The series status.</value>
|
|
/// <value>The series status.</value>
|
|
public SeriesStatus[] SeriesStatuses { get; set; }
|
|
public SeriesStatus[] SeriesStatuses { get; set; }
|
|
-
|
|
|
|
|
|
+
|
|
/// <summary>
|
|
/// <summary>
|
|
/// Gets or sets the ids, which are specific items to retrieve
|
|
/// Gets or sets the ids, which are specific items to retrieve
|
|
/// </summary>
|
|
/// </summary>
|
|
@@ -169,5 +169,35 @@ namespace MediaBrowser.Model.Querying
|
|
/// </summary>
|
|
/// </summary>
|
|
/// <value>The max official rating.</value>
|
|
/// <value>The max official rating.</value>
|
|
public string MaxOfficialRating { get; set; }
|
|
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[] { };
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|