ItemCountsQuery.cs 621 B

1234567891011121314151617181920
  1. namespace MediaBrowser.Model.Querying
  2. {
  3. /// <summary>
  4. /// Class ItemCountsQuery
  5. /// </summary>
  6. public class ItemCountsQuery
  7. {
  8. /// <summary>
  9. /// Gets or sets the user id.
  10. /// </summary>
  11. /// <value>The user id.</value>
  12. public string UserId { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether this instance is favorite.
  15. /// </summary>
  16. /// <value><c>null</c> if [is favorite] contains no value, <c>true</c> if [is favorite]; otherwise, <c>false</c>.</value>
  17. public bool? IsFavorite { get; set; }
  18. }
  19. }