RemoteSearchQuery.cs 673 B

1234567891011121314151617181920212223
  1. using System;
  2. namespace MediaBrowser.Controller.Providers
  3. {
  4. public class RemoteSearchQuery<T>
  5. where T : ItemLookupInfo
  6. {
  7. public T SearchInfo { get; set; }
  8. public Guid ItemId { get; set; }
  9. /// <summary>
  10. /// Will only search within the given provider when set.
  11. /// </summary>
  12. public string SearchProviderName { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether disabled providers should be included.
  15. /// </summary>
  16. /// <value><c>true</c> if disabled providers should be included.</value>
  17. public bool IncludeDisabledProviders { get; set; }
  18. }
  19. }