using System; namespace MediaBrowser.Controller.Providers { public class RemoteSearchQuery where T : ItemLookupInfo { public T SearchInfo { get; set; } public Guid ItemId { get; set; } /// /// Will only search within the given provider when set. /// public string SearchProviderName { get; set; } /// /// Gets or sets a value indicating whether disabled providers should be included. /// /// true if disabled providers should be included. public bool IncludeDisabledProviders { get; set; } } }