#nullable disable #pragma warning disable CS1591 using System; namespace MediaBrowser.Controller.Providers { public class RemoteSearchQuery where T : ItemLookupInfo { public T SearchInfo { get; set; } public Guid ItemId { get; set; } /// /// Gets or sets the provider name to search within if 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; } } }