jellyfin/MediaBrowser.Controller/Providers/RemoteSearchQuery.cs

28 lines
727 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Controller.Providers
{
public class RemoteSearchQuery<T>
where T : ItemLookupInfo
{
public T SearchInfo { get; set; }
public Guid ItemId { get; set; }
2018-12-28 00:27:57 +01:00
/// <summary>
/// Gets or sets the provider name to search within if set.
2018-12-28 00:27:57 +01:00
/// </summary>
public string SearchProviderName { get; set; }
/// <summary>
/// Gets or sets a value indicating whether disabled providers should be included.
2018-12-28 00:27:57 +01:00
/// </summary>
/// <value><c>true</c> if disabled providers should be included.</value>
2018-12-28 00:27:57 +01:00
public bool IncludeDisabledProviders { get; set; }
}
}