2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-10 14:30:26 +00:00
|
|
|
using System;
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
|
|
|
public class RemoteSearchQuery<T>
|
|
|
|
where T : ItemLookupInfo
|
|
|
|
{
|
|
|
|
public T SearchInfo { get; set; }
|
|
|
|
|
2019-01-10 14:30:26 +00:00
|
|
|
public Guid ItemId { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2021-05-11 11:55:46 +00:00
|
|
|
/// Gets or sets the provider name to search within if set.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public string SearchProviderName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-03-09 14:05:03 +00:00
|
|
|
/// Gets or sets a value indicating whether disabled providers should be included.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2020-03-09 14:05:03 +00:00
|
|
|
/// <value><c>true</c> if disabled providers should be included.</value>
|
2018-12-27 23:27:57 +00:00
|
|
|
public bool IncludeDisabledProviders { get; set; }
|
|
|
|
}
|
2019-01-13 19:30:58 +00:00
|
|
|
}
|