using System; namespace MediaBrowser.Controller.Providers { public class RemoteSearchQuery where T : ItemLookupInfo { public T SearchInfo { get; set; } public Guid ItemId { get; set; } /// /// If set will only search within the given provider /// public string SearchProviderName { get; set; } /// /// Gets or sets a value indicating whether [include disabled providers]. /// /// true if [include disabled providers]; otherwise, false. public bool IncludeDisabledProviders { get; set; } } }