UserViewQuery.cs 892 B

1234567891011121314151617181920212223242526272829
  1. 
  2. namespace MediaBrowser.Model.Library
  3. {
  4. public class UserViewQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets the user identifier.
  8. /// </summary>
  9. /// <value>The user identifier.</value>
  10. public string UserId { get; set; }
  11. /// <summary>
  12. /// Gets or sets a value indicating whether [include external content].
  13. /// </summary>
  14. /// <value><c>true</c> if [include external content]; otherwise, <c>false</c>.</value>
  15. public bool IncludeExternalContent { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether [include hidden].
  18. /// </summary>
  19. /// <value><c>true</c> if [include hidden]; otherwise, <c>false</c>.</value>
  20. public bool IncludeHidden { get; set; }
  21. public UserViewQuery()
  22. {
  23. IncludeExternalContent = true;
  24. }
  25. }
  26. }