RemoteSearchQuery.cs 619 B

12345678910111213141516171819
  1. namespace MediaBrowser.Controller.Providers
  2. {
  3. public class RemoteSearchQuery<T>
  4. where T : ItemLookupInfo
  5. {
  6. public T SearchInfo { get; set; }
  7. /// <summary>
  8. /// If set will only search within the given provider
  9. /// </summary>
  10. public string SearchProviderName { get; set; }
  11. /// <summary>
  12. /// Gets or sets a value indicating whether [include disabled providers].
  13. /// </summary>
  14. /// <value><c>true</c> if [include disabled providers]; otherwise, <c>false</c>.</value>
  15. public bool IncludeDisabledProviders { get; set; }
  16. }
  17. }