2
0

ItemCountsQuery.cs 625 B

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