mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 15:48:03 +00:00
Cleanup ItemFields (#13818)
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
OpenAPI / OpenAPI - HEAD (push) Waiting to run
OpenAPI / OpenAPI - BASE (push) Waiting to run
OpenAPI / OpenAPI - Difference (push) Blocked by required conditions
OpenAPI / OpenAPI - Publish Unstable Spec (push) Blocked by required conditions
OpenAPI / OpenAPI - Publish Stable Spec (push) Blocked by required conditions
Tests / run-tests (macos-latest) (push) Waiting to run
Tests / run-tests (ubuntu-latest) (push) Waiting to run
Tests / run-tests (windows-latest) (push) Waiting to run
Project Automation / Project board (push) Waiting to run
Merge Conflict Labeler / Labeling (push) Waiting to run
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
OpenAPI / OpenAPI - HEAD (push) Waiting to run
OpenAPI / OpenAPI - BASE (push) Waiting to run
OpenAPI / OpenAPI - Difference (push) Blocked by required conditions
OpenAPI / OpenAPI - Publish Unstable Spec (push) Blocked by required conditions
OpenAPI / OpenAPI - Publish Stable Spec (push) Blocked by required conditions
Tests / run-tests (macos-latest) (push) Waiting to run
Tests / run-tests (ubuntu-latest) (push) Waiting to run
Tests / run-tests (windows-latest) (push) Waiting to run
Project Automation / Project board (push) Waiting to run
Merge Conflict Labeler / Labeling (push) Waiting to run
* Cleanup ItemFields * Update MediaBrowser.Model/Querying/ItemFields.cs
This commit is contained in:
@@ -1,7 +1,3 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Querying
|
||||
{
|
||||
/// <summary>
|
||||
@@ -39,6 +35,9 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
Trickplay,
|
||||
|
||||
/// <summary>
|
||||
/// The child count.
|
||||
/// </summary>
|
||||
ChildCount,
|
||||
|
||||
/// <summary>
|
||||
@@ -81,11 +80,6 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
Genres,
|
||||
|
||||
/// <summary>
|
||||
/// The home page URL.
|
||||
/// </summary>
|
||||
HomePageUrl,
|
||||
|
||||
/// <summary>
|
||||
/// The item counts.
|
||||
/// </summary>
|
||||
@@ -101,6 +95,9 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
MediaSources,
|
||||
|
||||
/// <summary>
|
||||
/// The original title.
|
||||
/// </summary>
|
||||
OriginalTitle,
|
||||
|
||||
/// <summary>
|
||||
@@ -123,6 +120,9 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
People,
|
||||
|
||||
/// <summary>
|
||||
/// Value indicating whether playback access is granted.
|
||||
/// </summary>
|
||||
PlayAccess,
|
||||
|
||||
/// <summary>
|
||||
@@ -140,6 +140,9 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
PrimaryImageAspectRatio,
|
||||
|
||||
/// <summary>
|
||||
/// The recursive item count.
|
||||
/// </summary>
|
||||
RecursiveItemCount,
|
||||
|
||||
/// <summary>
|
||||
@@ -147,14 +150,6 @@ namespace MediaBrowser.Model.Querying
|
||||
/// </summary>
|
||||
Settings,
|
||||
|
||||
/// <summary>
|
||||
/// The screenshot image tags.
|
||||
/// </summary>
|
||||
[Obsolete("Screenshot image type is no longer used.")]
|
||||
ScreenshotImageTags,
|
||||
|
||||
SeriesPrimaryImage,
|
||||
|
||||
/// <summary>
|
||||
/// The series studio.
|
||||
/// </summary>
|
||||
@@ -201,27 +196,58 @@ namespace MediaBrowser.Model.Querying
|
||||
SeasonUserData,
|
||||
|
||||
/// <summary>
|
||||
/// The service name.
|
||||
/// The last time metadata was refreshed.
|
||||
/// </summary>
|
||||
ServiceName,
|
||||
ThemeSongIds,
|
||||
ThemeVideoIds,
|
||||
ExternalEtag,
|
||||
PresentationUniqueKey,
|
||||
InheritedParentalRatingValue,
|
||||
InheritedParentalRatingSubValue,
|
||||
ExternalSeriesId,
|
||||
SeriesPresentationUniqueKey,
|
||||
DateLastRefreshed,
|
||||
|
||||
/// <summary>
|
||||
/// The last time metadata was saved.
|
||||
/// </summary>
|
||||
DateLastSaved,
|
||||
|
||||
/// <summary>
|
||||
/// The refresh state.
|
||||
/// </summary>
|
||||
RefreshState,
|
||||
|
||||
/// <summary>
|
||||
/// The channel image.
|
||||
/// </summary>
|
||||
ChannelImage,
|
||||
|
||||
/// <summary>
|
||||
/// Value indicating whether media source display is enabled.
|
||||
/// </summary>
|
||||
EnableMediaSourceDisplay,
|
||||
|
||||
/// <summary>
|
||||
/// The width.
|
||||
/// </summary>
|
||||
Width,
|
||||
|
||||
/// <summary>
|
||||
/// The height.
|
||||
/// </summary>
|
||||
Height,
|
||||
|
||||
/// <summary>
|
||||
/// The external Ids.
|
||||
/// </summary>
|
||||
ExtraIds,
|
||||
|
||||
/// <summary>
|
||||
/// The local trailer count.
|
||||
/// </summary>
|
||||
LocalTrailerCount,
|
||||
|
||||
/// <summary>
|
||||
/// Value indicating whether the item is HD.
|
||||
/// </summary>
|
||||
IsHD,
|
||||
|
||||
/// <summary>
|
||||
/// The special feature count.
|
||||
/// </summary>
|
||||
SpecialFeatureCount
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user