RemoteSearchQuery.cs 677 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. /// If set will only search within the given provider
  11. /// </summary>
  12. public string SearchProviderName { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether [include disabled providers].
  15. /// </summary>
  16. /// <value><c>true</c> if [include disabled providers]; otherwise, <c>false</c>.</value>
  17. public bool IncludeDisabledProviders { get; set; }
  18. }
  19. }