namespace MediaBrowser.Model.Querying
{
///
/// Class ItemCountsQuery
///
public class ItemCountsQuery
{
///
/// Gets or sets the user id.
///
/// The user id.
public string UserId { get; set; }
///
/// Gets or sets a value indicating whether this instance is favorite.
///
/// null if [is favorite] contains no value, true if [is favorite]; otherwise, false.
public bool? IsFavorite { get; set; }
}
}