mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 20:54:20 +01:00
Merge pull request #17339 from mbastian77/docs/providers-lookup-info-xml-docs
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
#nullable disable
|
||||
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// The lookup info for books.
|
||||
/// </summary>
|
||||
public class BookInfo : ItemLookupInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the series the book belongs to.
|
||||
/// </summary>
|
||||
public string SeriesName { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// The lookup info for box sets.
|
||||
/// </summary>
|
||||
public class BoxSetInfo : ItemLookupInfo
|
||||
{
|
||||
}
|
||||
|
||||
@@ -1,10 +1,16 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for items that provide lookup info for metadata providers.
|
||||
/// </summary>
|
||||
/// <typeparam name="TLookupInfoType">The type of the lookup info.</typeparam>
|
||||
public interface IHasLookupInfo<out TLookupInfoType>
|
||||
where TLookupInfoType : ItemLookupInfo, new()
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the lookup info.
|
||||
/// </summary>
|
||||
/// <returns>The lookup info.</returns>
|
||||
TLookupInfoType GetLookupInfo();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// Marker interface for custom metadata providers that run before the regular metadata refresh.
|
||||
/// </summary>
|
||||
public interface IPreRefreshProvider : ICustomMetadataProvider
|
||||
{
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// The lookup info for movies.
|
||||
/// </summary>
|
||||
public class MovieInfo : ItemLookupInfo
|
||||
{
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// The lookup info for persons.
|
||||
/// </summary>
|
||||
public class PersonLookupInfo : ItemLookupInfo
|
||||
{
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// The lookup info for series.
|
||||
/// </summary>
|
||||
public class SeriesInfo : ItemLookupInfo
|
||||
{
|
||||
}
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// The lookup info for trailers.
|
||||
/// </summary>
|
||||
public class TrailerInfo : ItemLookupInfo
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user