2
0

RemoteSearchQuery.cs 705 B

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