Cleanup ItemFields (#13818)

* Cleanup ItemFields

* Update MediaBrowser.Model/Querying/ItemFields.cs
This commit is contained in:
Tim Eisele
2025-04-01 01:46:21 +02:00
committed by GitHub
parent 14b785d188
commit 086fbd49cf
4 changed files with 63 additions and 41 deletions

View File

@@ -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
}
}