2
0

UserViewQuery.cs 643 B

1234567891011121314151617181920212223
  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. public UserViewQuery()
  17. {
  18. IncludeExternalContent = true;
  19. }
  20. }
  21. }