added min/max official rating

This commit is contained in:
Luke Pulverenti
2013-04-13 20:17:25 -04:00
parent 7f1fdbf223
commit 587d3c1908
5 changed files with 47 additions and 4 deletions

View File

@@ -157,5 +157,17 @@ namespace MediaBrowser.Model.Querying
/// </summary>
/// <value>The ids.</value>
public string[] Ids { get; set; }
/// <summary>
/// Gets or sets the min official rating.
/// </summary>
/// <value>The min official rating.</value>
public string MinOfficialRating { get; set; }
/// <summary>
/// Gets or sets the max official rating.
/// </summary>
/// <value>The max official rating.</value>
public string MaxOfficialRating { get; set; }
}
}