RemoteSearchQuery.cs 727 B

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